blob: f918f7d2ea07a005f1ef63940585b65abc7dadad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# -*- make -*-
# This is the top level test makefile for APT, it recurses to each lower
# level make file and runs it with the proper target
ifndef NOISY
.SILENT:
endif
.PHONY: headers library clean veryclean all binary program doc
all clean veryclean binary program dirs:
$(MAKE) -C libapt $@
$(MAKE) -C interactive-helper $@
# Some very common aliases
.PHONY: maintainer-clean dist-clean distclean pristine sanity
maintainer-clean dist-clean distclean pristine sanity: veryclean
.PHONY: test
test:
./libapt/run-tests
|