Makefile 496 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: headers library clean veryclean all binary program doc test
  8. all clean veryclean binary program dirs test:
  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