1 # You can do "make SUB=blah" to make only a few, or edit here, or both
2 # You can also run make directly in the subdirs you want.
6 %.build
: MCONFIG aconfig.h version.h
7 $(MAKE
) -C
$(patsubst %.build
, %, $@
)
9 %.
install: MCONFIG aconfig.h version.h
10 $(MAKE
) -C
$(patsubst %.
install, %, $@
) install
13 $(MAKE
) -C
$(patsubst %.
clean, %, $@
) clean
16 $(MAKE
) -C
$(patsubst %.
distclean, %, $@
) distclean
18 all: MCONFIG
$(patsubst %, %.build
, $(SUB
))
21 tftpd.build
: lib.build
23 install: MCONFIG
$(patsubst %, %.
install, $(SUB
))
25 clean: localclean
$(patsubst %, %.
clean, $(SUB
))
30 distclean: localdistclean
$(patsubst %, %.
distclean, $(SUB
))
32 localdistclean
: localclean
33 rm -f MCONFIG config.status config.log aconfig.h
*~ \
#*
35 find .
-type f \
( -name \
*.orig
-o
-name \
*.rej \
) | xargs
rm -f
38 rm -f configure aconfig.h.in tftp.spec
40 autoconf
: configure aconfig.h.in
42 config
: MCONFIG aconfig.h
49 MCONFIG
: configure MCONFIG.in aconfig.h.in
50 if
test -x config.status
; then \
51 .
/config.status
--recheck
&& .
/config.status
; \
57 : Generated by side effect
59 # Adding "configure" to the dependencies serializes this with running
60 # autoconf, because there are apparently race conditions between
61 # autoconf and autoheader.
62 aconfig.h.in
: configure.in configure aclocal.m4
63 rm -f aconfig.h.in aconfig.h
66 configure
: configure.in aclocal.m4
67 rm -rf MCONFIG configure config.log aconfig.h
*.cache
71 echo \
#define VERSION \"tftp-hpa `cat version`\" > version.h
73 tftp.spec
: tftp.spec.in version
74 sed
-e
"s/@@VERSION@@/`cat version`/g" < $< > $@ ||
rm -f
$@