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