]>
Commit | Line | Data |
---|---|---|
1 | # -*- make -*- | |
2 | BASE=../.. | |
3 | SUBDIR=test/interactive-helper | |
4 | APT_DOMAIN=none | |
5 | ||
6 | # Bring in the default rules | |
7 | include ../../buildlib/defaults.mak | |
8 | ||
9 | # Program for testing methods | |
10 | PROGRAM=mthdcat | |
11 | SLIBS = | |
12 | SOURCE = mthdcat.cc | |
13 | include $(PROGRAM_H) | |
14 | ||
15 | # Program for testing the tar/deb extractor | |
16 | PROGRAM=testdeb | |
17 | SLIBS = -lapt-pkg -lapt-inst | |
18 | LIB_MAKES = apt-pkg/makefile apt-inst/makefile | |
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 | |
25 | LIB_MAKES = apt-pkg/makefile apt-inst/makefile | |
26 | SOURCE = extract-control.cc | |
27 | include $(PROGRAM_H) | |
28 | ||
29 | # Program for testing udevcdrom | |
30 | PROGRAM=test_udevcdrom | |
31 | SLIBS = -lapt-pkg | |
32 | LIB_MAKES = apt-pkg/makefile | |
33 | SOURCE = test_udevcdrom.cc | |
34 | include $(PROGRAM_H) | |
35 | ||
36 | PROGRAM=test_fileutl | |
37 | SLIBS = -lapt-pkg | |
38 | LIB_MAKES = apt-pkg/makefile | |
39 | SOURCE = test_fileutl.cc | |
40 | include $(PROGRAM_H) | |
41 | ||
42 | # Program for checking rpm versions | |
43 | #PROGRAM=rpmver | |
44 | #SLIBS = -lapt-pkg -lrpm | |
45 | #SOURCE = rpmver.cc | |
46 | #include $(PROGRAM_H) | |
47 | ||
48 | # very simple webserver for APT testing | |
49 | PROGRAM=aptwebserver | |
50 | SLIBS = -lapt-pkg -lpthread | |
51 | LIB_MAKES = apt-pkg/makefile | |
52 | SOURCE = aptwebserver.cc | |
53 | include $(PROGRAM_H) |