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