Makefile 353 B

12345678910111213
  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 deity $@
  8. $(MAKE) -C apt-pkg $@
  9. $(MAKE) -C cmdline $@
  10. $(MAKE) -C doc $@