Makefile 792 B

123456789101112131415161718192021222324252627282930313233
  1. # -*- make -*-
  2. # This is the top level make file for APT, it recurses to each lower
  3. # level make file and runs it with the proper target
  4. ifndef NOISY
  5. .SILENT:
  6. endif
  7. .PHONY: headers library clean veryclean all binary program doc
  8. all headers library clean veryclean binary program doc:
  9. $(MAKE) -C apt-pkg $@
  10. $(MAKE) -C methods $@
  11. # $(MAKE) -C methods/ftp $@
  12. $(MAKE) -C cmdline $@
  13. $(MAKE) -C deity $@
  14. $(MAKE) -C gui $@
  15. $(MAKE) -C doc $@
  16. .PHONY: maintainer-clean dist-clean distclean pristine sanity
  17. maintainer-clean dist-clean distclean pristine sanity: veryclean
  18. # The startup target builds the necessary configure scripts. It should
  19. # be used after a CVS checkout.
  20. .PHONY: startup
  21. startup: configure
  22. configure: aclocal.m4 configure.in
  23. autoconf
  24. aclocal.m4:
  25. aclocal -I buildlib