diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:15 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:51:15 +0000 |
commit | 93bf083d699c60f1ac40297bfa6783fb0cb800d8 (patch) | |
tree | 456e6c73d98b317d85cbea60728cf9e93546bbd8 /Makefile | |
parent | 779e5b002e216565108cdb4ad9598e1af650f004 (diff) |
Sync
Author: jgg
Date: 1998-10-30 07:53:30 GMT
Sync
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 |