]>
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 | ||
a11afb9d DK |
12 | .PHONY: headers library clean veryclean all binary program doc test update-po |
13 | startup all headers library clean veryclean binary program doc dirs test update-po: | |
6322370b | 14 | $(MAKE) -C apt-pkg $@ |
b2e465d6 | 15 | $(MAKE) -C apt-inst $@ |
024835dc | 16 | $(MAKE) -C methods $@ |
1164783d | 17 | $(MAKE) -C cmdline $@ |
b2e465d6 | 18 | $(MAKE) -C ftparchive $@ |
30d3bf59 | 19 | $(MAKE) -C dselect $@ |
faf4e30c | 20 | $(MAKE) -C doc $@ |
80948457 | 21 | $(MAKE) -C po $@ |
9edcd9ad | 22 | $(MAKE) -C test $@ |
93641593 | 23 | |
a11afb9d DK |
24 | update-po: startup |
25 | ||
46976ca4 | 26 | # Some very common aliases |
93641593 AL |
27 | .PHONY: maintainer-clean dist-clean distclean pristine sanity |
28 | maintainer-clean dist-clean distclean pristine sanity: veryclean | |
93bf083d | 29 | |
93bf083d AL |
30 | # The startup target builds the necessary configure scripts. It should |
31 | # be used after a CVS checkout. | |
3174e150 | 32 | CONVERTED=environment.mak include/config.h include/apti18n.h build/doc/Doxyfile makefile |
c3c459fc | 33 | include buildlib/configure.mak |
53da8d70 | 34 | $(BUILDDIR)/include/config.h: buildlib/config.h.in |
b2e465d6 | 35 | $(BUILDDIR)/include/apti18n.h: buildlib/apti18n.h.in |
53da8d70 | 36 | $(BUILDDIR)/environment.mak: buildlib/environment.mak.in |
c3c459fc | 37 | $(BUILDDIR)/makefile: buildlib/makefile.in |