]> git.saurik.com Git - apt.git/blame_incremental - Makefile
Working acquire code
[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: headers library clean veryclean all binary program doc
10all headers library clean veryclean binary program doc:
11 $(MAKE) -C apt-pkg $@
12 $(MAKE) -C methods $@
13# $(MAKE) -C methods/ftp $@
14 $(MAKE) -C cmdline $@
15 $(MAKE) -C deity $@
16 $(MAKE) -C gui $@
17 $(MAKE) -C doc $@
18
19# Some very common aliases
20.PHONY: maintainer-clean dist-clean distclean pristine sanity
21maintainer-clean dist-clean distclean pristine sanity: veryclean
22
23# The startup target builds the necessary configure scripts. It should
24# be used after a CVS checkout.
25CONVERTED=environment.mak include/config.h makefile
26$(BUILD)/include/config.h: buildlib/config.h.in
27$(BUILD)/environment.mak: buildlib/environment.mak.in
28include buildlib/configure.mak