]> git.saurik.com Git - apt.git/blame_incremental - cmdline/makefile
Merge branch 'debian/sid' into debian/experimental
[apt.git] / cmdline / makefile
... / ...
CommitLineData
1# -*- make -*-
2BASE=..
3SUBDIR=cmdline
4
5# Bring in the default rules
6include ../buildlib/defaults.mak
7
8# The apt program
9PROGRAM=apt
10SLIBS = -lapt-pkg -lapt-private $(INTLLIBS)
11LIB_MAKES = apt-pkg/makefile
12SOURCE = apt.cc
13include $(PROGRAM_H)
14
15# The apt-cache program
16PROGRAM=apt-cache
17SLIBS = -lapt-pkg -lapt-private $(INTLLIBS)
18LIB_MAKES = apt-pkg/makefile
19SOURCE = apt-cache.cc
20include $(PROGRAM_H)
21
22# The apt-get program
23PROGRAM=apt-get
24SLIBS = -lapt-pkg -lapt-private $(INTLLIBS)
25LIB_MAKES = apt-pkg/makefile
26SOURCE = apt-get.cc
27include $(PROGRAM_H)
28
29# The apt-config program
30PROGRAM=apt-config
31SLIBS = -lapt-pkg -lapt-private $(INTLLIBS)
32LIB_MAKES = apt-pkg/makefile
33SOURCE = apt-config.cc
34include $(PROGRAM_H)
35
36# The apt-cdrom program
37PROGRAM=apt-cdrom
38SLIBS = -lapt-pkg -lapt-private $(INTLLIBS)
39LIB_MAKES = apt-pkg/makefile
40SOURCE = apt-cdrom.cc
41include $(PROGRAM_H)
42
43# The apt-key program
44SOURCE=apt-key
45TO=$(BIN)
46TARGET=program
47include $(COPY_H)
48
49# The apt-mark program
50PROGRAM=apt-mark
51SLIBS = -lapt-pkg -lapt-private $(INTLLIBS)
52LIB_MAKES = apt-pkg/makefile
53SOURCE = apt-mark.cc
54include $(PROGRAM_H)
55
56# The apt-report-mirror-failure program
57#SOURCE=apt-report-mirror-failure
58#TO=$(BIN)
59#TARGET=program
60#include $(COPY_H)
61
62#
63# the following programs are shipped in apt-utils
64#
65APT_DOMAIN:=apt-utils
66
67# The apt-sortpkgs program
68PROGRAM=apt-sortpkgs
69SLIBS = -lapt-pkg $(INTLLIBS)
70LIB_MAKES = apt-pkg/makefile
71SOURCE = apt-sortpkgs.cc
72include $(PROGRAM_H)
73
74# The apt-extracttemplates program
75PROGRAM=apt-extracttemplates
76SLIBS = -lapt-pkg -lapt-inst $(INTLLIBS)
77LIB_MAKES = apt-pkg/makefile
78SOURCE = apt-extracttemplates.cc
79include $(PROGRAM_H)
80
81# The internal solver acting as an external
82PROGRAM=apt-internal-solver
83SLIBS = -lapt-pkg $(INTLLIBS)
84LIB_MAKES = apt-pkg/makefile
85SOURCE = apt-internal-solver.cc
86include $(PROGRAM_H)
87
88# This just dumps out the state
89PROGRAM=apt-dump-solver
90SLIBS = -lapt-pkg $(INTLLIBS)
91LIB_MAKES = apt-pkg/makefile
92SOURCE = apt-dump-solver.cc
93include $(PROGRAM_H)