Makefile 372 B

1234567891011121314
  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 cmdline $@
  9. $(MAKE) -C deity $@
  10. $(MAKE) -C gui $@
  11. $(MAKE) -C doc $@