1 include common
/Makefile.common
3 all clean: %: bootrom
/% armsrc
/% client
/%
6 $(MAKE
) -C bootrom
$(patsubst bootrom
/%,%,$@
)
8 $(MAKE
) -C armsrc
$(patsubst armsrc
/%,%,$@
)
10 $(MAKE
) -C client
$(patsubst client
/%,%,$@
)
11 FORCE
: # Dummy target to force remake in the subdirectories, even if files exist (this Makefile doesn't know about the prerequisites)
14 .PHONY
: all clean help _test flash-bootrom flash-os flash-fpga flash-both flash-all FORCE
16 @echo Multi-OS Makefile
, you are running on
$(DETECTED_OS
)
17 @echo Possible targets
:
18 @echo
+ all - Make bootrom
, armsrc and the OS-specific host directory
19 @echo
+ client
- Make only the OS-specific host directory
20 @echo
+ flash-bootrom
- Make bootrom and flash it
21 @echo
+ flash-os
- Make armsrc and flash os
22 @echo
+ flash-fpga
- Make armsrc and flash fpga
23 @echo
+ flash-both
- Make armsrc and flash os and fpga image
24 @echo
+ flash-all
- Make bootrom and armsrc and flash bootrom
, os and fpga image
25 @echo
+ clean - Clean in bootrom
, armsrc and the OS-specific host directory
29 flash-bootrom
: bootrom
/obj
/bootrom.elf
$(FLASH_TOOL
)
30 $(FLASH_TOOL
) -b
$(subst /,$(PATHSEP
),$<)
32 flash-os
: armsrc
/obj
/osimage.elf
$(FLASH_TOOL
)
33 $(FLASH_TOOL
) $(subst /,$(PATHSEP
),$<)
35 flash-fpga
: armsrc
/obj
/fpgaimage.elf
$(FLASH_TOOL
)
36 $(FLASH_TOOL
) $(subst /,$(PATHSEP
),$<)
38 flash-both
: armsrc
/obj
/osimage.elf armsrc
/obj
/fpgaimage.elf
$(FLASH_TOOL
)
39 $(FLASH_TOOL
) $(subst /,$(PATHSEP
),$(filter-out $(FLASH_TOOL
),$^
))
41 flash-all
: bootrom
/obj
/bootrom.elf armsrc
/obj
/osimage.elf armsrc
/obj
/fpgaimage.elf
$(FLASH_TOOL
)
42 $(FLASH_TOOL
) -b
$(subst /,$(PATHSEP
),$(filter-out $(FLASH_TOOL
),$^
))
44 # Dummy target to test for GNU make availability