forked from mirrors/tftp-hpa-google

Rename configure.in to configure.ac in accordance with current practice. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
78 lines
2.1 KiB
Makefile
78 lines
2.1 KiB
Makefile
# You can do "make SUB=blah" to make only a few, or edit here, or both
|
|
# You can also run make directly in the subdirs you want.
|
|
|
|
SUB = lib common tftp tftpd
|
|
|
|
%.build: MCONFIG aconfig.h version.h
|
|
$(MAKE) -C $(patsubst %.build, %, $@)
|
|
|
|
%.install: MCONFIG aconfig.h version.h
|
|
$(MAKE) -C $(patsubst %.install, %, $@) install
|
|
|
|
%.clean:
|
|
$(MAKE) -C $(patsubst %.clean, %, $@) clean
|
|
|
|
%.distclean:
|
|
$(MAKE) -C $(patsubst %.distclean, %, $@) distclean
|
|
|
|
all: MCONFIG $(patsubst %, %.build, $(SUB))
|
|
|
|
tftp.build: lib.build common.build
|
|
tftpd.build: lib.build common.build
|
|
|
|
install: MCONFIG $(patsubst %, %.install, $(SUB))
|
|
|
|
clean: localclean $(patsubst %, %.clean, $(SUB))
|
|
|
|
localclean:
|
|
rm -f version.h
|
|
|
|
distclean: localdistclean $(patsubst %, %.distclean, $(SUB))
|
|
|
|
localdistclean: localclean
|
|
rm -f MCONFIG config.status config.log aconfig.h *~ \#*
|
|
rm -rf *.cache
|
|
find . -type f \( -name \*.orig -o -name \*.rej \) | xargs rm -f
|
|
|
|
spotless: distclean
|
|
rm -f configure aconfig.h.in tftp.spec
|
|
|
|
autoconf: configure aconfig.h.in
|
|
|
|
config: MCONFIG aconfig.h
|
|
|
|
release:
|
|
$(MAKE) autoconf
|
|
$(MAKE) tftp.spec
|
|
$(MAKE) distclean
|
|
|
|
MCONFIG: configure MCONFIG.in aconfig.h.in
|
|
if test -x config.status; then \
|
|
./config.status --recheck && ./config.status ; \
|
|
else \
|
|
./configure ; \
|
|
fi
|
|
|
|
aconfig.h: MCONFIG
|
|
: Generated by side effect
|
|
|
|
# Adding "configure" to the dependencies serializes this with running
|
|
# autoconf, because there are apparently race conditions between
|
|
# autoconf and autoheader. And worse than that, even when autoconf
|
|
# cleanly returns first, autoheader will truncate the timestamp of
|
|
# aconfig.h.in to second resolution, so on a filesystem with subsecond
|
|
# resolution it can appear older than configure (which isn't truncated).
|
|
# So make it an order-only prerequisite to avoid looping regenerating it.
|
|
aconfig.h.in: configure.ac aclocal.m4 | configure
|
|
rm -f aconfig.h.in aconfig.h
|
|
autoheader
|
|
|
|
configure: configure.ac aclocal.m4
|
|
rm -rf MCONFIG configure config.log aconfig.h *.cache
|
|
autoconf
|
|
|
|
version.h: version
|
|
echo \#define VERSION \"tftp-hpa `cat version`\" > version.h
|
|
|
|
tftp.spec: tftp.spec.in version
|
|
sed -e "s/@@VERSION@@/`cat version`/g" < $< > $@ || rm -f $@
|