Makefile 764 B

1234567891011121314151617181920212223242526272829303132
  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 cmdline $@
  12. $(MAKE) -C deity $@
  13. $(MAKE) -C gui $@
  14. $(MAKE) -C doc $@
  15. .PHONY: maintainer-clean dist-clean distclean pristine sanity
  16. maintainer-clean dist-clean distclean pristine sanity: veryclean
  17. # The startup target builds the necessary configure scripts. It should
  18. # be used after a CVS checkout.
  19. .PHONY: startup
  20. startup: configure
  21. configure: aclocal.m4 configure.in
  22. autoconf
  23. aclocal.m4:
  24. aclocal -I buildlib