]>
Commit | Line | Data |
---|---|---|
9edcd9ad DK |
1 | # -*- make -*- |
2 | ||
3 | # This is the top level test makefile for APT, it recurses to each lower | |
4 | # level make file and runs it with the proper target | |
5 | ifndef NOISY | |
6 | .SILENT: | |
7 | endif | |
8 | ||
a11afb9d | 9 | .PHONY: startup headers library clean veryclean all binary program doc test update-po |
1098ae37 | 10 | startup all clean veryclean binary program dirs test update-po manpages debiandoc: |
9edcd9ad DK |
11 | $(MAKE) -C libapt $@ |
12 | $(MAKE) -C interactive-helper $@ | |
13 | ||
14 | # Some very common aliases | |
15 | .PHONY: maintainer-clean dist-clean distclean pristine sanity | |
16 | maintainer-clean dist-clean distclean pristine sanity: veryclean |