]>
Commit | Line | Data |
---|---|---|
1164783d AL |
1 | # -*- make -*- |
2 | BASE=.. | |
3164dff9 | 3 | SUBDIR=cmdline |
1164783d AL |
4 | |
5 | # Bring in the default rules | |
6 | include ../buildlib/defaults.mak | |
7 | ||
b9179170 MV |
8 | # The apt program |
9 | PROGRAM=apt | |
10 | SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) | |
11 | LIB_MAKES = apt-pkg/makefile | |
12 | SOURCE = apt.cc | |
13 | include $(PROGRAM_H) | |
14 | ||
08e8f724 | 15 | # The apt-cache program |
1164783d | 16 | PROGRAM=apt-cache |
b9179170 | 17 | SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) |
f760b7d2 | 18 | LIB_MAKES = apt-pkg/makefile |
8fde7239 | 19 | SOURCE = apt-cache.cc |
08e8f724 | 20 | include $(PROGRAM_H) |
1164783d | 21 | |
7a1b1f8b | 22 | # The apt-get program |
0a8e3465 | 23 | PROGRAM=apt-get |
b9179170 | 24 | SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) |
f760b7d2 | 25 | LIB_MAKES = apt-pkg/makefile |
b9179170 | 26 | SOURCE = apt-get.cc |
1164783d | 27 | include $(PROGRAM_H) |
7a1b1f8b AL |
28 | |
29 | # The apt-config program | |
30 | PROGRAM=apt-config | |
b9179170 | 31 | SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) |
f760b7d2 | 32 | LIB_MAKES = apt-pkg/makefile |
7a1b1f8b AL |
33 | SOURCE = apt-config.cc |
34 | include $(PROGRAM_H) | |
83d89a9f AL |
35 | |
36 | # The apt-cdrom program | |
37 | PROGRAM=apt-cdrom | |
b9179170 | 38 | SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) |
f760b7d2 | 39 | LIB_MAKES = apt-pkg/makefile |
a75c6a6e | 40 | SOURCE = apt-cdrom.cc |
83d89a9f | 41 | include $(PROGRAM_H) |
b2e465d6 | 42 | |
7db98ffc | 43 | # The apt-key program |
5b2c6ddc DK |
44 | apt-key: apt-key.in |
45 | sed -e "s#&keyring-filename;#$(shell ../vendor/getinfo keyring-filename)#" \ | |
46 | -e "s#&keyring-removed-filename;#$(shell ../vendor/getinfo keyring-removed-filename)#" \ | |
47 | -e "s#&keyring-master-filename;#$(shell ../vendor/getinfo keyring-master-filename)#" \ | |
48 | -e "s#&keyring-uri;#$(shell ../vendor/getinfo keyring-uri)#" \ | |
49 | -e "s#&keyring-package;#$(shell ../vendor/getinfo keyring-package)#" $< > $@ | |
50 | chmod 755 $@ | |
51 | ||
7db98ffc MZ |
52 | SOURCE=apt-key |
53 | TO=$(BIN) | |
54 | TARGET=program | |
55 | include $(COPY_H) | |
c15f5690 MV |
56 | |
57 | # The apt-mark program | |
c98fb5e0 | 58 | PROGRAM=apt-mark |
b9179170 | 59 | SLIBS = -lapt-pkg -lapt-private $(INTLLIBS) |
c98fb5e0 DK |
60 | LIB_MAKES = apt-pkg/makefile |
61 | SOURCE = apt-mark.cc | |
62 | include $(PROGRAM_H) | |
a577a938 | 63 | |
23c5897c MV |
64 | # The apt-report-mirror-failure program |
65 | #SOURCE=apt-report-mirror-failure | |
66 | #TO=$(BIN) | |
67 | #TARGET=program | |
68 | #include $(COPY_H) | |
4128c846 | 69 | |
53ec04bb DK |
70 | # |
71 | # the following programs are shipped in apt-utils | |
72 | # | |
73 | APT_DOMAIN:=apt-utils | |
74 | ||
75 | # The apt-sortpkgs program | |
76 | PROGRAM=apt-sortpkgs | |
77 | SLIBS = -lapt-pkg $(INTLLIBS) | |
78 | LIB_MAKES = apt-pkg/makefile | |
79 | SOURCE = apt-sortpkgs.cc | |
80 | include $(PROGRAM_H) | |
81 | ||
82 | # The apt-extracttemplates program | |
83 | PROGRAM=apt-extracttemplates | |
84 | SLIBS = -lapt-pkg -lapt-inst $(INTLLIBS) | |
85 | LIB_MAKES = apt-pkg/makefile | |
86 | SOURCE = apt-extracttemplates.cc | |
87 | include $(PROGRAM_H) | |
88 | ||
4128c846 DK |
89 | # The internal solver acting as an external |
90 | PROGRAM=apt-internal-solver | |
91 | SLIBS = -lapt-pkg $(INTLLIBS) | |
92 | LIB_MAKES = apt-pkg/makefile | |
93 | SOURCE = apt-internal-solver.cc | |
94 | include $(PROGRAM_H) | |
7f471354 | 95 | |
a2cba9cc | 96 | # This just dumps out the state |
7f471354 DK |
97 | PROGRAM=apt-dump-solver |
98 | SLIBS = -lapt-pkg $(INTLLIBS) | |
99 | LIB_MAKES = apt-pkg/makefile | |
100 | SOURCE = apt-dump-solver.cc | |
101 | include $(PROGRAM_H) |