]> git.saurik.com Git - apt.git/blame_incremental - Makefile
Make pkgCache::Priority() static, it does not need the instance
[apt.git] / Makefile
... / ...
CommitLineData
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
5ifndef NOISY
6.SILENT:
7endif
8
9.PHONY: default
10default: startup all
11
12.PHONY: fast headers library clean veryclean all binary program doc test update-po
13all headers library clean veryclean binary program doc manpages docbook test update-po startup dirs:
14 $(MAKE) -C vendor $@
15 $(MAKE) -C apt-pkg $@
16 $(MAKE) -C apt-inst $@
17 $(MAKE) -C apt-private $@
18 $(MAKE) -C methods $@
19 $(MAKE) -C cmdline $@
20 $(MAKE) -C ftparchive $@
21 $(MAKE) -C dselect $@
22 $(MAKE) -C doc $@
23 $(MAKE) -C po $@
24 $(MAKE) -C test $@
25
26fast:
27 $(MAKE) -C vendor all
28 $(MAKE) -C apt-pkg all
29 $(MAKE) -C apt-inst all
30 $(MAKE) -C apt-private all
31 $(MAKE) -C methods all
32 $(MAKE) -C cmdline all
33 $(MAKE) -C ftparchive all
34 $(MAKE) -C test all
35
36all headers library clean veryclean binary program doc manpages docbook test update-po: startup dirs
37
38dirs: startup
39
40# Some very common aliases
41.PHONY: maintainer-clean dist-clean distclean pristine sanity
42maintainer-clean dist-clean distclean pristine sanity: veryclean
43veryclean: clean
44
45# The startup target builds the necessary configure scripts. It should
46# be used after a CVS checkout.
47CONVERTED=environment.mak include/config.h include/apti18n.h build/doc/Doxyfile makefile
48include buildlib/configure.mak
49$(BUILDDIR)/include/config.h: buildlib/config.h.in
50$(BUILDDIR)/include/apti18n.h: buildlib/apti18n.h.in
51$(BUILDDIR)/environment.mak: buildlib/environment.mak.in
52$(BUILDDIR)/makefile: buildlib/makefile.in