You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.housekeeping 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  1. # -*- makefile -*- : Force emacs to use Makefile mode
  2. # This file contains various boring housekeeping functions that would
  3. # otherwise seriously clutter up the main Makefile.
  4. # Objects to be removed by "make clean"
  5. #
  6. CLEANUP := $(BIN)/*.* # *.* to avoid catching the "CVS" directory
  7. # Version number calculations
  8. #
  9. VERSION_MAJOR = 0
  10. VERSION_MINOR = 5
  11. VERSION_PATCH = 1
  12. EXTRAVERSION =
  13. MM_VERSION = $(VERSION_MAJOR).$(VERSION_MINOR)
  14. VERSION = $(MM_VERSION).$(VERSION_PATCH)$(EXTRAVERSION)
  15. CFLAGS += -DVERSION_MAJOR=$(VERSION_MAJOR) \
  16. -DVERSION_MINOR=$(VERSION_MINOR) \
  17. -DVERSION=\"$(VERSION)\"
  18. IDENT = '$(@F) $(VERSION) (GPL) etherboot.org'
  19. version :
  20. @$(ECHO) $(VERSION)
  21. # Check for tools that can cause failed builds
  22. #
  23. .toolcheck : Makefile Config
  24. @if $(CC) -v 2>&1 | grep -is 'gcc version 2\.96' > /dev/null; then \
  25. $(ECHO) 'gcc 2.96 is unsuitable for compiling Etherboot'; \
  26. $(ECHO) 'Use gcc 2.95 or gcc 3.x instead'; \
  27. exit 1; \
  28. fi
  29. @if [ `perl -e 'use bytes; print chr(255)' | wc -c` = 2 ]; then \
  30. $(ECHO) 'Your Perl version has a Unicode handling bug'; \
  31. $(ECHO) 'Execute this command before compiling Etherboot:'; \
  32. $(ECHO) 'export LANG=$${LANG%.UTF-8}'; \
  33. exit 1; \
  34. fi
  35. @$(TOUCH) $@
  36. VERYCLEANUP += .toolcheck
  37. # Find a usable "echo -e" substitute.
  38. #
  39. TAB := $(shell $(PRINTF) '\t')
  40. ECHO_E_ECHO := $(ECHO)
  41. ECHO_E_ECHO_E := $(ECHO) -e
  42. ECHO_E_BIN_ECHO := /bin/echo
  43. ECHO_E_BIN_ECHO_E := /bin/echo -e
  44. ECHO_E_ECHO_TAB := $(shell $(ECHO_E_ECHO) '\t' | cat)
  45. ECHO_E_ECHO_E_TAB := $(shell $(ECHO_E_ECHO_E) '\t' | cat)
  46. ECHO_E_BIN_ECHO_TAB := $(shell $(ECHO_E_BIN_ECHO) '\t')
  47. ECHO_E_BIN_ECHO_E_TAB := $(shell $(ECHO_E_BIN_ECHO_E) '\t')
  48. ifeq ($(ECHO_E_ECHO_TAB),$(TAB))
  49. ECHO_E ?= $(ECHO_E_ECHO)
  50. endif
  51. ifeq ($(ECHO_E_ECHO_E_TAB),$(TAB))
  52. ECHO_E ?= $(ECHO_E_ECHO_E)
  53. endif
  54. ifeq ($(ECHO_E_BIN_ECHO_TAB),$(TAB))
  55. ECHO_E ?= $(ECHO_E_BIN_ECHO)
  56. endif
  57. ifeq ($(ECHO_E_BIN_ECHO_E_TAB),$(TAB))
  58. ECHO_E ?= $(ECHO_E_BIN_ECHO_E)
  59. endif
  60. .echocheck :
  61. ifdef ECHO_E
  62. @$(TOUCH) $@
  63. else
  64. @$(PRINTF) '%24s : x%sx\n' 'tab' '$(TAB)'
  65. @$(PRINTF) '%24s : x%sx\n' '"$(ECHO_E_ECHO) \t"' \
  66. '$(ECHO_E_ECHO_TAB)'
  67. @$(PRINTF) '%24s : x%sx\n' '"$(ECHO_E_ECHO_E) \t"' \
  68. '$(ECHO_E_ECHO_E_TAB)'
  69. @$(PRINTF) '%24s : x%sx\n' '"$(ECHO_E_BIN_ECHO) \t"' \
  70. '$(ECHO_E_BIN_ECHO_TAB)'
  71. @$(PRINTF) '%24s : x%sx\n' '"$(ECHO_E_BIN_ECHO_E) \t"' \
  72. '$(ECHO_E_BIN_ECHO_E_TAB)'
  73. @$(ECHO) "No usable \"echo -e\" substitute found"
  74. @exit 1
  75. endif
  76. VERYCLEANUP += .echocheck
  77. echo :
  78. @$(ECHO) "Using \"$(ECHO_E)\" for \"echo -e\""
  79. # Build verbosity
  80. #
  81. ifeq ($(V),1)
  82. Q =
  83. QM = @\#
  84. else
  85. Q = @
  86. QM = @
  87. endif
  88. # Check for an old version of gas (binutils 2.9.1)
  89. #
  90. OLDGAS := $(shell $(AS) --version | grep -q '2\.9\.1' && $(ECHO) -DGAS291)
  91. CFLAGS += $(OLDGAS)
  92. oldgas :
  93. @$(ECHO) $(oldgas)
  94. # compiler.h is needed for our linking and debugging system
  95. #
  96. CFLAGS += -include compiler.h
  97. # config/%.h files are generated from config.h using mkconfig.pl
  98. config/%.h : config.h
  99. $(MKCONFIG) $<
  100. CLEANUP += config/*.h
  101. # SRCDIRS lists all directories containing source files.
  102. srcdirs :
  103. @$(ECHO) $(SRCDIRS)
  104. # SRCS lists all .c or .S files found in any SRCDIR
  105. #
  106. SRCS += $(wildcard $(patsubst %,%/*.c,$(SRCDIRS)))
  107. SRCS += $(wildcard $(patsubst %,%/*.S,$(SRCDIRS)))
  108. srcs :
  109. @$(ECHO) $(SRCS)
  110. # AUTO_SRCS lists all files in SRCS that are not mentioned in
  111. # NON_AUTO_SRCS. Files should be added to NON_AUTO_SRCS if they
  112. # cannot be built using the standard build template.
  113. #
  114. AUTO_SRCS = $(filter-out $(NON_AUTO_SRCS),$(SRCS))
  115. autosrcs :
  116. @$(ECHO) $(AUTO_SRCS)
  117. # We automatically generate rules for any file mentioned in AUTO_SRCS
  118. # using the following set of templates. It would be cleaner to use
  119. # $(eval ...), but this function exists only in GNU make >= 3.80.
  120. # src_template : generate Makefile rules for a given source file
  121. #
  122. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  123. # $(2) is the full path to the .d file (e.g. "bin/deps/drivers/net/rtl8139.d")
  124. # $(3) is the source type (e.g. "c")
  125. # $(4) is the source base name (e.g. "rtl8139")
  126. #
  127. define src_template
  128. @$(ECHO) "Generating Makefile rules for $(1)"
  129. @$(MKDIR) -p $(dir $(2))
  130. @$(RM) $(2)
  131. @$(TOUCH) $(2)
  132. $(foreach OBJ,$(if $(OBJS_$(4)),$(OBJS_$(4)),$(4)), \
  133. $(call obj_template,$(1),$(2),$(3),$(OBJ)))
  134. @$(PARSEROM) $(1) >> $(2)
  135. endef
  136. # obj_template : generate Makefile rules for a given resultant object
  137. # of a particular source file. (We can have multiple objects per
  138. # source file via the OBJS_xxx list.)
  139. #
  140. # $(1) is the full path to the source file (e.g. "drivers/net/rtl8139.c")
  141. # $(2) is the full path to the .d file (e.g. "bin/deps/drivers/net/rtl8139.d")
  142. # $(3) is the source type (e.g. "c")
  143. # $(4) is the object name (e.g. "rtl8139")
  144. #
  145. define obj_template
  146. @$(CPP) $(CFLAGS) $(CFLAGS_$(3)) $(CFLAGS_$(4)) -DOBJECT=$(4) \
  147. -Wno-error -M $(1) -MT "$(4)_DEPS" -MG -MP | \
  148. sed 's/_DEPS\s*:/_DEPS =/' >> $(2)
  149. @$(ECHO_E) '\n$$(BIN)/$(4).o : $(1) $$(MAKEDEPS) $$($(4)_DEPS)' \
  150. '\n\t$$(QM)$(ECHO) " [BUILD] $$@"\n' \
  151. '\n\t$$(RULE_$(3))\n' \
  152. '\nBOBJS += $$(BIN)/$(4).o\n' \
  153. $(foreach TGT,$(DEBUG_TARGETS), \
  154. $(if $(RULE_$(3)_to_$(TGT)), \
  155. '\n$$(BIN)/$(4).$(TGT) : $(1) $$(MAKEDEPS) $$($(4)_DEPS)' \
  156. '\n\t$$(QM)$(ECHO) " [BUILD] $$@"\n' \
  157. '\n\t$$(RULE_$(3)_to_$(TGT))\n' \
  158. '\n$(TGT)_OBJS += $$(BIN)/$(4).$(TGT)\n' ) ) \
  159. '\n$(2) : $$($(4)_DEPS)\n' \
  160. '\nTAGS : $$($(4)_DEPS)\n' \
  161. >> $(2)
  162. endef
  163. # Rule to generate the Makefile rules files to be included
  164. #
  165. $(BIN)/deps/%.d : % $(MAKEDEPS) $(PARSEROM)
  166. $(if $(filter $(AUTO_SRCS),$<),$(call src_template,$<,$@,$(subst .,,$(suffix $<)),$(basename $(notdir $<))),@$(ECHO) 'ERROR: $< is not an AUTO_SRC' ; exit 1)
  167. # Calculate and include the list of Makefile rules files
  168. #
  169. AUTO_DEPS = $(patsubst %,$(BIN)/deps/%.d,$(AUTO_SRCS))
  170. include $(AUTO_DEPS)
  171. autodeps :
  172. @$(ECHO) $(AUTO_DEPS)
  173. VERYCLEANUP += $(BIN)/deps
  174. # The following variables are created by the Makefile rules files
  175. #
  176. bobjs :
  177. @$(ECHO) $(BOBJS)
  178. drivers :
  179. @$(ECHO) $(DRIVERS)
  180. .PHONY : drivers
  181. roms :
  182. @$(ECHO) $(ROMS)
  183. # Generate the NIC file from the parsed source files. The NIC file is
  184. # only for rom-o-matic.
  185. #
  186. $(BIN)/NIC : $(AUTO_DEPS)
  187. @$(ECHO) '# This is an automatically generated file, do not edit' > $@
  188. @$(ECHO) '# It does not affect anything in the build, ' \
  189. 'it is only for rom-o-matic' >> $@
  190. @$(ECHO) >> $@
  191. @perl -ne 'chomp; print "$$1\n" if /\# NIC\t(.*)$$/' $^ >> $@
  192. CLEANUP += $(BIN)/NIC
  193. # Analyse a target name (e.g. "bin/dfe538--prism2_pci.zrom.tmp") and
  194. # derive the variables:
  195. #
  196. # TGT_ELEMENTS : the elements of the target (e.g. "dfe538 prism2_pci")
  197. # TGT_PREFIX : the prefix type (e.g. "zrom")
  198. # TGT_DRIVERS : the driver for each element (e.g. "rtl8139 prism2_pci")
  199. # TGT_ROM_NAME : the ROM name (e.g. "dfe538")
  200. # TGT_MEDIA : the media type (e.g. "rom")
  201. #
  202. DRIVERS_gpxe = $(DRIVERS)
  203. CARD_DRIVER = $(firstword $(DRIVER_$(1)) $(1))
  204. TGT_ELEMENTS = $(subst --, ,$(firstword $(subst ., ,$(notdir $@))))
  205. TGT_PREFIX = $(word 2,$(subst ., ,$(notdir $@)))
  206. TGT_ROM_NAME = $(firstword $(TGT_ELEMENTS))
  207. TGT_DRIVERS = $(strip $(if $(DRIVERS_$(TGT_ROM_NAME)), \
  208. $(DRIVERS_$(TGT_ROM_NAME)), \
  209. $(foreach TGT_ELEMENT,$(TGT_ELEMENTS), \
  210. $(call CARD_DRIVER,$(TGT_ELEMENT))) ))
  211. TGT_MEDIA = $(subst z,,$(TGT_PREFIX))
  212. # Look up ROM IDs for the current target
  213. # (e.g. "bin/dfe538--prism2_pci.zrom.tmp") and derive the variables:
  214. #
  215. # TGT_PCI_VENDOR : the PCI vendor ID (e.g. "0x1186")
  216. # TGT_PCI_DEVICE : the PCI device ID (e.g. "0x1300")
  217. #
  218. TGT_PCI_VENDOR = $(PCI_VENDOR_$(TGT_ROM_NAME))
  219. TGT_PCI_DEVICE = $(PCI_DEVICE_$(TGT_ROM_NAME))
  220. # Calculate link-time options for the current target
  221. # (e.g. "bin/dfe538--prism2_pci.zrom.tmp") and derive the variables:
  222. #
  223. # TGT_LD_DRIVERS : symbols to require in order to drag in the relevant drivers
  224. # (e.g. "obj_rtl8139 obj_prism2_pci")
  225. # TGT_LD_IDS : symbols to define in order to fill in ID structures in the
  226. # ROM header (e.g."pci_vendor_id=0x1186 pci_device_id=0x1300")
  227. #
  228. TGT_LD_DRIVERS = $(subst -,_,$(patsubst %,obj_%,$(TGT_DRIVERS)))
  229. TGT_LD_PREFIX = obj_$(TGT_PREFIX)prefix
  230. TGT_LD_IDS = $(if $(TGT_PCI_VENDOR),pci_vendor_id=$(TGT_PCI_VENDOR)) \
  231. $(if $(TGT_PCI_DEVICE),pci_device_id=$(TGT_PCI_DEVICE))
  232. # Calculate linker flags based on link-time options for the current
  233. # target type (e.g. "bin/dfe538--prism2_pci.zrom.tmp") and derive the
  234. # variables:
  235. #
  236. # TGT_LD_FLAGS : target-specific flags to pass to linker (e.g.
  237. # "-u obj_zpciprefix -u obj_rtl8139 -u obj_prism2_pci
  238. # --defsym pci_vendor=0x1186 --defsym pci_device=0x1300")
  239. #
  240. TGT_LD_FLAGS = $(foreach SYM,$(TGT_LD_PREFIX) $(TGT_LD_DRIVERS) obj_config,\
  241. -u $(SYM) --defsym check_$(SYM)=$(SYM) ) \
  242. $(patsubst %,--defsym %,$(TGT_LD_IDS))
  243. # Calculate makerom flags for the specific target
  244. # (e.g. "bin/dfe538--prism2_pci.zrom.tmp") and derive the variables:
  245. #
  246. # TGT_MAKEROM_FLAGS : target-specific flags for makerom (e.g.
  247. # "-p 0x1186,0x1300")
  248. #
  249. TGT_MAKEROM_FLAGS = $(strip $(MAKEROM_FLAGS_$(TGT_ROM_NAME)) \
  250. $(if $(TGT_PCI_VENDOR),$(strip -p $(TGT_PCI_VENDOR),$(TGT_PCI_DEVICE))))
  251. # Calculate list of debugging versions of objects to be included in
  252. # the target.
  253. #
  254. COMMA := ,
  255. DEBUG_LIST = $(subst $(COMMA), ,$(DEBUG))
  256. DEBUG_OBJ_LEVEL = $(firstword $(word 2,$(subst :, ,$(1))) 1)
  257. DEBUG_OBJ_BASE = $(word 1,$(subst :, ,$(1))).dbg$(call DEBUG_OBJ_LEVEL,$(1))
  258. DEBUG_OBJ = $(BIN)/$(call DEBUG_OBJ_BASE,$(1)).o
  259. DEBUG_ORIG_OBJ = $(BIN)/$(word 1,$(subst :, ,$(1))).o
  260. DEBUG_OBJS = $(foreach D,$(DEBUG_LIST),$(call DEBUG_OBJ,$(D)))
  261. DEBUG_ORIG_OBJS = $(foreach D,$(DEBUG_LIST),$(call DEBUG_ORIG_OBJ,$(D)))
  262. BLIB_OBJS = $(DEBUG_OBJS) $(filter-out $(DEBUG_ORIG_OBJS),$(BOBJS))
  263. # Print out all derived information for a given target.
  264. #
  265. $(BIN)/%.info :
  266. @$(ECHO) 'Elements : $(TGT_ELEMENTS)'
  267. @$(ECHO) 'Prefix : $(TGT_PREFIX)'
  268. @$(ECHO) 'Drivers : $(TGT_DRIVERS)'
  269. @$(ECHO) 'ROM name : $(TGT_ROM_NAME)'
  270. @$(ECHO) 'Media : $(TGT_MEDIA)'
  271. @$(ECHO)
  272. @$(ECHO) 'PCI vendor : $(TGT_PCI_VENDOR)'
  273. @$(ECHO) 'PCI device : $(TGT_PCI_DEVICE)'
  274. @$(ECHO)
  275. @$(ECHO) 'LD driver symbols : $(TGT_LD_DRIVERS)'
  276. @$(ECHO) 'LD prefix symbols : $(TGT_LD_PREFIX)'
  277. @$(ECHO) 'LD ID symbols : $(TGT_LD_IDS)'
  278. @$(ECHO)
  279. @$(ECHO) 'LD target flags : $(TGT_LD_FLAGS)'
  280. @$(ECHO)
  281. @$(ECHO) 'makerom target flags : $(TGT_MAKEROM_FLAGS)'
  282. @$(ECHO)
  283. @$(ECHO) 'Debugging objects : $(DEBUG_OBJS)'
  284. @$(ECHO) 'Replaced objects : $(DEBUG_ORIG_OBJS)'
  285. # List of objects included in the last build of blib. This is needed
  286. # in order to correctly rebuild blib whenever the list of objects
  287. # changes.
  288. #
  289. BLIB_LIST = $(BIN)/.blib.list
  290. ifneq ($(shell cat $(BLIB_LIST)),$(BLIB_OBJS))
  291. $(shell $(ECHO) "$(BLIB_OBJS)" > $(BLIB_LIST))
  292. endif
  293. $(BLIB_LIST) :
  294. VERYCLEANUP += $(BLIB_LIST)
  295. # Library of all objects
  296. #
  297. BLIB = $(BIN)/blib.a
  298. $(BLIB) : $(BLIB_OBJS) $(BLIB_LIST) $(MAKEDEPS)
  299. $(Q)$(RM) $(BLIB)
  300. $(QM)$(ECHO) " [AR] $@"
  301. $(Q)$(AR) r $@ $(BLIB_OBJS)
  302. $(Q)$(RANLIB) $@
  303. blib : $(BLIB)
  304. # Build an intermediate object file from the objects required for the
  305. # specified target.
  306. #
  307. $(BIN)/%.tmp : $(BLIB) $(MAKEDEPS) $(LDSCRIPT)
  308. $(QM)$(ECHO) " [LD] $@"
  309. $(Q)$(LD) $(LDFLAGS) -T $(LDSCRIPT) $(TGT_LD_FLAGS) $(BLIB) -o $@ \
  310. -Map $(BIN)/$*.tmp.map
  311. $(Q)$(OBJDUMP) -ht $@ | $(SORTOBJDUMP) >> $(BIN)/$*.tmp.map
  312. # Show a linker map for the specified target
  313. #
  314. $(BIN)/%.map : $(BIN)/%.tmp
  315. @less $(BIN)/$*.tmp.map
  316. # Extract compression information from intermediate object file
  317. #
  318. $(BIN)/%.zinfo : $(BIN)/%.tmp
  319. $(QM)$(ECHO) " [ZINFO] $@"
  320. $(Q)$(OBJCOPY) -O binary -j .zinfo $< $@
  321. # Build raw binary file from intermediate object file
  322. #
  323. $(BIN)/%.bin : $(BIN)/%.tmp
  324. $(QM)$(ECHO) " [BIN] $@"
  325. $(Q)$(OBJCOPY) -O binary -R .zinfo $< $@
  326. # Compress raw binary file
  327. #
  328. $(BIN)/%.zbin : $(BIN)/%.bin $(BIN)/%.zinfo $(ZBIN)
  329. $(QM)$(ECHO) " [ZBIN] $@"
  330. $(Q)$(ZBIN) $(BIN)/$*.bin $(BIN)/$*.zinfo > $@
  331. # Build bochs symbol table
  332. $(BIN)/%.bxs : $(BIN)/%.tmp
  333. $(NM) $< | cut -d" " -f1,3 > $@
  334. # Rules for each media format. These are generated and placed in an
  335. # external Makefile fragment. We could do this via $(eval ...), but
  336. # that would require make >= 3.80.
  337. #
  338. # Note that there's an alternative way to generate most .rom images:
  339. # they can be copied from their 'master' ROM image using cp and
  340. # reprocessed with makerom to add the PCI IDs and ident string. The
  341. # relevant rule would look something like:
  342. #
  343. # $(BIN)/dfe538%rom : $(BIN)/rtl8139%rom
  344. # cat $< $@
  345. # $(FINALISE_rom)
  346. #
  347. # You can derive the ROM/driver relationships using the variables
  348. # DRIVER_<rom> and/or ROMS_<driver>.
  349. #
  350. # We don't currently do this, because (a) it would require generating
  351. # yet more Makefile fragments (since you need a rule for each ROM in
  352. # ROMS), and (b) the linker is so fast that it probably wouldn't make
  353. # much difference to the overall build time.
  354. media :
  355. @$(ECHO) $(MEDIA)
  356. AUTO_MEDIA = $(filter-out $(NON_AUTO_MEDIA),$(MEDIA))
  357. automedia :
  358. @$(ECHO) $(AUTO_MEDIA)
  359. # media_template : create Makefile rules for specified media
  360. #
  361. # $(1) is the media name (e.g. "rom")
  362. # $(2) is the full path to the .d file (e.g. "bin/deps/rom.media.d")
  363. #
  364. define media_template
  365. @$(ECHO) "Generating Makefile rules for $(1) media"
  366. @$(MKDIR) -p $(dir $(2))
  367. @$(RM) $(2)
  368. @$(TOUCH) $(2)
  369. @$(ECHO_E) '$$(BIN)/%.$(1) : $$(BIN)/%.$(1).zbin' \
  370. '\n\t$$(QM)$(ECHO) " [FINISH] $$@"' \
  371. '\n\t$$(Q)$$(CP) $$< $$@' \
  372. '\n\t$$(Q)$$(FINALISE_$(1))' \
  373. > $(2)
  374. endef
  375. # Rule to generate the Makefile rules to be included
  376. #
  377. $(BIN)/deps/%.media.d : $(MAKEDEPS)
  378. $(if $(filter $(AUTO_MEDIA),$*), \
  379. $(call media_template,$*,$@), \
  380. @$(ECHO) 'ERROR: $* is not an AUTO_MEDIA' ; exit 1)
  381. # Calculate and include the list of Makefile rules files
  382. #
  383. MEDIA_DEPS = $(patsubst %,$(BIN)/deps/%.media.d,$(AUTO_MEDIA))
  384. mediadeps :
  385. @$(ECHO) $(MEDIA_DEPS)
  386. include $(MEDIA_DEPS)
  387. # The "allXXXs" targets for each suffix
  388. #
  389. allall: allroms allzroms allpxes allisos alldsks
  390. allroms allzroms : all%s : $(foreach ROM,$(ROMS),$(BIN)/$(ROM).%)
  391. allpxes allisos alldsks : all%s : $(foreach DRIVER,$(DRIVERS),$(BIN)/$(DRIVER).%)
  392. # Alias for gpxe.%
  393. #
  394. $(BIN)/etherboot.% : $(BIN)/gpxe.%
  395. ln -sf $(notdir $<) $@
  396. # Wrap up binary blobs
  397. #
  398. $(BIN)/%.o : payload/%.img
  399. $(QM)echo " [WRAP] $@"
  400. $(Q)$(LD) -b binary -r -o $@ $< --undefined obj_payload \
  401. --defsym obj_$*=0
  402. BOBJS += $(patsubst payload/%.img,$(BIN)/%.o,$(wildcard payload/*.img))
  403. # The compression utilities
  404. #
  405. $(NRV2B) : util/nrv2b.c $(MAKEDEPS)
  406. $(QM)$(ECHO) " [HOSTCC] $@"
  407. $(Q)$(HOST_CC) -O2 -DENCODE -DDECODE -DMAIN -DVERBOSE -DNDEBUG \
  408. -DBITSIZE=32 -DENDIAN=0 -o $@ $<
  409. CLEANUP += $(NRV2B)
  410. $(ZBIN) : util/zbin.c util/nrv2b.c $(MAKEDEPS)
  411. $(QM)$(ECHO) " [HOSTCC] $@"
  412. $(Q)$(HOST_CC) -O2 -o $@ $<
  413. CLEANUP += $(ZBIN)
  414. # Auto-incrementing build serial number. Append "bs" to your list of
  415. # build targets to get a serial number printed at the end of the
  416. # build. Enable -DBUILD_SERIAL in order to see it when the code runs.
  417. #
  418. BUILDSERIAL_H = config/.buildserial.h
  419. BUILDSERIAL_NOW = config/.buildserial.now
  420. BUILDSERIAL_NEXT = config/.buildserial.next
  421. $(BUILDSERIAL_NOW) $(BUILDSERIAL_NEXT) :
  422. $(ECHO) 1 > $@
  423. $(BUILDSERIAL_H) : $(BUILDSERIAL_NOW) $(BUILDSERIAL_NEXT)
  424. $(ECHO) '#define BUILD_SERIAL_NUM $(shell cat $<)' > $@
  425. ifeq ($(filter bs,$(MAKECMDGOALS)),bs)
  426. $(shell diff -q $(BUILDSERIAL_NOW) $(BUILDSERIAL_NEXT) > /dev/null || \
  427. cp -f $(BUILDSERIAL_NEXT) $(BUILDSERIAL_NOW))
  428. endif
  429. bs : $(BUILDSERIAL_NOW)
  430. @$(ECHO) $$(( $(shell cat $<) + 1 )) > $(BUILDSERIAL_NEXT)
  431. @$(ECHO) "Build serial number is $(shell cat $<)"
  432. # List of available architectures
  433. #
  434. ARCHS = $(filter-out CVS,$(patsubst arch/%,%,$(wildcard arch/*)))
  435. archs :
  436. @$(ECHO) $(ARCHS)
  437. OTHER_ARCHS = $(filter-out $(ARCH),$(ARCHS))
  438. otherarchs :
  439. @$(ECHO) $(OTHER_ARCHS)
  440. # Build the TAGS file for emacs
  441. #
  442. TAGS : TAGS.$(ARCH)
  443. TAGS.$(ARCH) :
  444. ctags -e -R -f $@ --exclude=bin \
  445. $(foreach ARCH,$(OTHER_ARCHS),--exclude=arch/$(ARCH))
  446. CLEANUP += TAGS*
  447. # Symbol table checks
  448. #
  449. SYMTAB = $(BIN)/symtab
  450. $(SYMTAB) : $(BLIB)
  451. $(OBJDUMP) -w -t $< > $@
  452. CLEANUP += $(BIN)/symtab
  453. symcheck : $(SYMTAB)
  454. $(SYMCHECK) $<
  455. # Force rebuild for any given target
  456. #
  457. $(BIN)/%.rebuild :
  458. rm -f $(BIN)/$*
  459. $(MAKE) $(MAKEFLAGS) $(BIN)/$*
  460. # Documentation
  461. #
  462. $(BIN)/doxygen.cfg : doxygen.cfg $(MAKEDEPS)
  463. $(PERL) -pe 's{\@SRCDIRS\@}{$(SRCDIRS)}; ' \
  464. -e 's{\@BIN\@}{$(BIN)}; ' \
  465. -e 's{\@ARCH\@}{$(ARCH)}; ' \
  466. $< > $@
  467. $(BIN)/doc : $(BIN)/doxygen.cfg
  468. $(DOXYGEN) $<
  469. .PHONY : $(BIN)/doc
  470. VERYCLEANUP += $(BIN)/doc
  471. doc : $(BIN)/doc
  472. docview :
  473. @[ -f $(BIN)/doc/html/index.html ] || $(MAKE) $(BIN)/doc
  474. @if [ -n "$$BROWSER" ] ; then \
  475. ( $$BROWSER $(BIN)/doc/html/index.html & ) ; \
  476. else \
  477. $(ECHO) "Documentation index in $(BIN)/doc/html/index.html" ; \
  478. fi
  479. # Clean-up
  480. #
  481. clean :
  482. $(RM) $(CLEANUP)
  483. veryclean : clean
  484. $(RM) -r $(VERYCLEANUP)
  485. # Make clean tarballs for release
  486. gpxe-tarball : ../VERSION
  487. ($(ECHO) -n $(VERSION) ''; date -u +'%Y-%m-%d') > ../VERSION
  488. $(RM) -r /tmp/gpxe/gpxe-$(VERSION)
  489. mkdir -p /tmp/gpxe/gpxe-$(VERSION)
  490. cp -rP .. /tmp/gpxe/gpxe-$(VERSION)
  491. $(RM) -r /tmp/gpxe/CVS
  492. ( cd /tmp/gpxe/gpxe-$(VERSION)/src ; $(RM) -r bin/deps ; $(MAKE) clean ; $(MAKE) veryclean )
  493. ( cd /tmp/gpxe; tar cf /tmp/gpxe/gpxe-$(VERSION).tar --exclude CVS --exclude "#*" \
  494. --exclude "*~" gpxe-$(VERSION) )
  495. bzip2 -9 < /tmp/gpxe/gpxe-$(VERSION).tar > /tmp/gpxe/gpxe-$(VERSION).tar.bz2
  496. gzip -9 < /tmp/gpxe/gpxe-$(VERSION).tar > /tmp/gpxe/gpxe-$(VERSION).tar.gz
  497. $(RM) -r /tmp/gpxe/gpxe-$(VERSION)
  498. $(RM) /tmp/gpxe/gpxe-$(VERSION).tar
  499. ( cd /tmp/gpxe ; tar -zxf /tmp/gpxe/gpxe-$(VERSION).tar.gz )