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