]>
Commit | Line | Data |
---|---|---|
6322370b AL |
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 | |
93bf083d | 5 | ifndef NOISY |
6322370b | 6 | .SILENT: |
93bf083d | 7 | endif |
6322370b | 8 | |
b2e465d6 AL |
9 | .PHONY: default |
10 | default: startup all | |
11 | ||
6322370b | 12 | .PHONY: headers library clean veryclean all binary program doc |
b2e465d6 | 13 | all headers library clean veryclean binary program doc dirs: |
6322370b | 14 | $(MAKE) -C apt-pkg $@ |
b2e465d6 | 15 | $(MAKE) -C apt-inst $@ |
1164783d | 16 | $(MAKE) -C cmdline $@ |
93641593 | 17 | |
46976ca4 | 18 | # Some very common aliases |
93641593 AL |
19 | .PHONY: maintainer-clean dist-clean distclean pristine sanity |
20 | maintainer-clean dist-clean distclean pristine sanity: veryclean | |
93bf083d | 21 | |
93bf083d AL |
22 | # The startup target builds the necessary configure scripts. It should |
23 | # be used after a CVS checkout. | |
3174e150 | 24 | CONVERTED=environment.mak include/config.h include/apti18n.h build/doc/Doxyfile makefile |
c3c459fc | 25 | include buildlib/configure.mak |
53da8d70 | 26 | $(BUILDDIR)/include/config.h: buildlib/config.h.in |
b2e465d6 | 27 | $(BUILDDIR)/include/apti18n.h: buildlib/apti18n.h.in |
53da8d70 | 28 | $(BUILDDIR)/environment.mak: buildlib/environment.mak.in |
c3c459fc | 29 | $(BUILDDIR)/makefile: buildlib/makefile.in |