Makefile 527 B

12345678910111213141516171819202122
  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: headers library clean veryclean all binary program doc
  8. all clean veryclean binary program dirs:
  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
  14. .PHONY: test
  15. test:
  16. ./libapt/run-tests