Makefile 549 B

1234567891011121314151617
  1. # -*- make -*-
  2. # This is the top level test makefile 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: startup headers library clean veryclean all binary program doc test update-po
  8. startup all clean veryclean binary program dirs test update-po manpages docbook:
  9. $(MAKE) -C libapt $@
  10. $(MAKE) -C interactive-helper $@
  11. # Some very common aliases
  12. .PHONY: maintainer-clean dist-clean distclean pristine sanity
  13. maintainer-clean dist-clean distclean pristine sanity: veryclean