]> git.saurik.com Git - apt.git/blame_incremental - test/interactive-helper/makefile
tests: deduplicate package creation framework code
[apt.git] / test / interactive-helper / makefile
... / ...
CommitLineData
1# -*- make -*-
2BASE=../..
3SUBDIR=test/interactive-helper
4APT_DOMAIN=none
5
6# Bring in the default rules
7include ../../buildlib/defaults.mak
8
9# Program for testing methods
10PROGRAM=mthdcat
11SLIBS =
12SOURCE = mthdcat.cc
13include $(PROGRAM_H)
14
15# Program for testing the tar/deb extractor
16PROGRAM=testdeb
17SLIBS = -lapt-pkg -lapt-inst
18LIB_MAKES = apt-pkg/makefile apt-inst/makefile
19SOURCE = testdeb.cc
20include $(PROGRAM_H)
21
22# Program for testing tar extraction
23PROGRAM=extract-control
24SLIBS = -lapt-pkg -lapt-inst
25LIB_MAKES = apt-pkg/makefile apt-inst/makefile
26SOURCE = extract-control.cc
27include $(PROGRAM_H)
28
29# Program for testing udevcdrom
30PROGRAM=test_udevcdrom
31SLIBS = -lapt-pkg
32LIB_MAKES = apt-pkg/makefile
33SOURCE = test_udevcdrom.cc
34include $(PROGRAM_H)
35
36PROGRAM=test_fileutl
37SLIBS = -lapt-pkg
38LIB_MAKES = apt-pkg/makefile
39SOURCE = test_fileutl.cc
40include $(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
49PROGRAM=aptwebserver
50SLIBS = -lapt-pkg -lpthread
51LIB_MAKES = apt-pkg/makefile
52SOURCE = aptwebserver.cc
53include $(PROGRAM_H)