]>
Commit | Line | Data |
---|---|---|
024835dc | 1 | # -*- make -*- |
369c919f DK |
2 | BASE=../.. |
3 | SUBDIR=test/interactive-helper | |
024835dc AL |
4 | |
5 | # Bring in the default rules | |
369c919f | 6 | include ../../buildlib/defaults.mak |
024835dc | 7 | |
8bb5959b AL |
8 | # Program for testing methods |
9 | PROGRAM=mthdcat | |
10 | SLIBS = | |
11 | SOURCE = mthdcat.cc | |
12 | include $(PROGRAM_H) | |
13 | ||
b2e465d6 AL |
14 | # Program for testing the tar/deb extractor |
15 | PROGRAM=testdeb | |
16 | SLIBS = -lapt-pkg -lapt-inst | |
9c257550 | 17 | LIB_MAKES = apt-pkg/makefile apt-inst/makefile |
b2e465d6 AL |
18 | SOURCE = testdeb.cc |
19 | include $(PROGRAM_H) | |
20 | ||
21 | # Program for testing tar extraction | |
22 | PROGRAM=extract-control | |
23 | SLIBS = -lapt-pkg -lapt-inst | |
9c257550 | 24 | LIB_MAKES = apt-pkg/makefile apt-inst/makefile |
b2e465d6 AL |
25 | SOURCE = extract-control.cc |
26 | include $(PROGRAM_H) | |
27 | ||
cbc9bed8 MV |
28 | # Program for testing udevcdrom |
29 | PROGRAM=test_udevcdrom | |
9c257550 DK |
30 | SLIBS = -lapt-pkg |
31 | LIB_MAKES = apt-pkg/makefile | |
cbc9bed8 MV |
32 | SOURCE = test_udevcdrom.cc |
33 | include $(PROGRAM_H) | |
34 | ||
c0a00c82 | 35 | # Program for checking rpm versions |
a722b2c5 DK |
36 | #PROGRAM=rpmver |
37 | #SLIBS = -lapt-pkg -lrpm | |
38 | #SOURCE = rpmver.cc | |
39 | #include $(PROGRAM_H) | |
e6cd40dc DK |
40 | |
41 | # very simple webserver for APT testing | |
42 | PROGRAM=aptwebserver | |
43 | SLIBS = -lapt-pkg | |
44 | LIB_MAKES = apt-pkg/makefile | |
45 | SOURCE = aptwebserver.cc | |
46 | include $(PROGRAM_H) |