]>
Commit | Line | Data |
---|---|---|
1 | # -*- make -*- | |
2 | ||
3 | # This is the top level make file for APT, it recurses to each lower | |
4 | # level make file and runs it with the proper target | |
5 | .SILENT: | |
6 | ||
7 | .PHONY: headers library clean veryclean all binary program doc | |
8 | all headers library clean veryclean binary program doc: | |
9 | $(MAKE) -C apt-pkg $@ | |
10 | $(MAKE) -C methods $@ | |
11 | $(MAKE) -C cmdline $@ | |
12 | $(MAKE) -C deity $@ | |
13 | $(MAKE) -C gui $@ | |
14 | $(MAKE) -C doc $@ |