diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -2,7 +2,9 @@ # This is the top level make file for APT, it recurses to each lower # level make file and runs it with the proper target +ifndef NOISY .SILENT: +endif .PHONY: headers library clean veryclean all binary program doc all headers library clean veryclean binary program doc: @@ -15,3 +17,15 @@ all headers library clean veryclean binary program doc: .PHONY: maintainer-clean dist-clean distclean pristine sanity maintainer-clean dist-clean distclean pristine sanity: veryclean + + +# The startup target builds the necessary configure scripts. It should +# be used after a CVS checkout. +.PHONY: startup +startup: configure + +configure: aclocal.m4 configure.in + autoconf + +aclocal.m4: + aclocal -I buildlib |