Makefile 524 B

123456789101112131415161718
  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. .SILENT:
  5. .PHONY: headers library clean veryclean all binary program doc
  6. all headers library clean veryclean binary program doc:
  7. $(MAKE) -C apt-pkg $@
  8. $(MAKE) -C methods $@
  9. $(MAKE) -C cmdline $@
  10. $(MAKE) -C deity $@
  11. $(MAKE) -C gui $@
  12. $(MAKE) -C doc $@
  13. .PHONY: maintainer-clean dist-clean distclean pristine sanity
  14. maintainer-clean dist-clean distclean pristine sanity: veryclean