]>
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 | ||
08e8f724 | 8 | # The apt-cache program |
1164783d | 9 | PROGRAM=apt-cache |
8cd53bd4 | 10 | SLIBS = -lapt-pkg $(INTLLIBS) |
f760b7d2 | 11 | LIB_MAKES = apt-pkg/makefile |
8fde7239 | 12 | SOURCE = apt-cache.cc |
08e8f724 | 13 | include $(PROGRAM_H) |
1164783d | 14 | |
7a1b1f8b | 15 | # The apt-get program |
0a8e3465 | 16 | PROGRAM=apt-get |
8cd53bd4 | 17 | SLIBS = -lapt-pkg -lutil $(INTLLIBS) |
f760b7d2 | 18 | LIB_MAKES = apt-pkg/makefile |
8fde7239 | 19 | SOURCE = apt-get.cc acqprogress.cc |
1164783d | 20 | include $(PROGRAM_H) |
7a1b1f8b AL |
21 | |
22 | # The apt-config program | |
23 | PROGRAM=apt-config | |
8cd53bd4 | 24 | SLIBS = -lapt-pkg $(INTLLIBS) |
f760b7d2 | 25 | LIB_MAKES = apt-pkg/makefile |
7a1b1f8b AL |
26 | SOURCE = apt-config.cc |
27 | include $(PROGRAM_H) | |
83d89a9f AL |
28 | |
29 | # The apt-cdrom program | |
30 | PROGRAM=apt-cdrom | |
8cd53bd4 | 31 | SLIBS = -lapt-pkg $(INTLLIBS) |
f760b7d2 | 32 | LIB_MAKES = apt-pkg/makefile |
a75c6a6e | 33 | SOURCE = apt-cdrom.cc |
83d89a9f | 34 | include $(PROGRAM_H) |
b2e465d6 | 35 | |
7db98ffc MZ |
36 | # The apt-key program |
37 | SOURCE=apt-key | |
38 | TO=$(BIN) | |
39 | TARGET=program | |
40 | include $(COPY_H) | |
c15f5690 MV |
41 | |
42 | # The apt-mark program | |
c98fb5e0 DK |
43 | PROGRAM=apt-mark |
44 | SLIBS = -lapt-pkg $(INTLLIBS) | |
45 | LIB_MAKES = apt-pkg/makefile | |
46 | SOURCE = apt-mark.cc | |
47 | include $(PROGRAM_H) | |
a577a938 | 48 | |
23c5897c MV |
49 | # The apt-report-mirror-failure program |
50 | #SOURCE=apt-report-mirror-failure | |
51 | #TO=$(BIN) | |
52 | #TARGET=program | |
53 | #include $(COPY_H) | |
4128c846 | 54 | |
53ec04bb DK |
55 | # |
56 | # the following programs are shipped in apt-utils | |
57 | # | |
58 | APT_DOMAIN:=apt-utils | |
59 | ||
60 | # The apt-sortpkgs program | |
61 | PROGRAM=apt-sortpkgs | |
62 | SLIBS = -lapt-pkg $(INTLLIBS) | |
63 | LIB_MAKES = apt-pkg/makefile | |
64 | SOURCE = apt-sortpkgs.cc | |
65 | include $(PROGRAM_H) | |
66 | ||
67 | # The apt-extracttemplates program | |
68 | PROGRAM=apt-extracttemplates | |
69 | SLIBS = -lapt-pkg -lapt-inst $(INTLLIBS) | |
70 | LIB_MAKES = apt-pkg/makefile | |
71 | SOURCE = apt-extracttemplates.cc | |
72 | include $(PROGRAM_H) | |
73 | ||
4128c846 DK |
74 | # The internal solver acting as an external |
75 | PROGRAM=apt-internal-solver | |
76 | SLIBS = -lapt-pkg $(INTLLIBS) | |
77 | LIB_MAKES = apt-pkg/makefile | |
78 | SOURCE = apt-internal-solver.cc | |
79 | include $(PROGRAM_H) | |
7f471354 | 80 | |
a2cba9cc | 81 | # This just dumps out the state |
7f471354 DK |
82 | PROGRAM=apt-dump-solver |
83 | SLIBS = -lapt-pkg $(INTLLIBS) | |
84 | LIB_MAKES = apt-pkg/makefile | |
85 | SOURCE = apt-dump-solver.cc | |
86 | include $(PROGRAM_H) |