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