blob: cdba3825920fe0f1d4984b1b5eda2c782dbb9a3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
## Process this file with automake to produce Makefile.in
localedir = $(datadir)/locale
pkgconfdir = $(sysconfdir)/@PACKAGE@
AM_CPPFLAGS = \
-DLOCALEDIR=\"$(localedir)\" \
-DADMINDIR=\"$(admindir)\" \
-idirafter $(top_srcdir)/lib/compat \
-I$(top_builddir) \
-I$(top_srcdir)/lib
LDADD = \
../lib/dpkg/libdpkg.a \
../lib/compat/libcompat.a \
$(LIBINTL)
EXTRA_DIST = \
$(test_cases)
bin_PROGRAMS = \
dpkg \
dpkg-divert \
dpkg-query \
dpkg-statoverride \
dpkg-trigger
dpkg_SOURCES = \
archives.c archives.h \
cleanup.c \
configure.c \
depcon.c \
enquiry.c \
errors.c \
filesdb.c filesdb.h \
filters.c filters.h \
infodb.c infodb.h \
divertdb.c \
statdb.c \
help.c \
main.c main.h \
packages.c \
processarc.c \
remove.c \
select.c \
trigproc.c \
update.c
dpkg_LDADD = \
$(LDADD) \
$(SELINUX_LIBS)
dpkg_divert_SOURCES = \
filesdb.c filesdb.h \
divertdb.c \
divertcmd.c
dpkg_query_SOURCES = \
filesdb.c filesdb.h \
divertdb.c \
querycmd.c
dpkg_statoverride_SOURCES = \
filesdb.c filesdb.h \
statdb.c \
statcmd.c
dpkg_trigger_SOURCES = \
trigcmd.c
install-data-local:
$(mkdir_p) $(DESTDIR)$(pkgconfdir)/dpkg.cfg.d
$(mkdir_p) $(DESTDIR)$(admindir)/info
$(mkdir_p) $(DESTDIR)$(admindir)/updates
TEST_VERBOSE = 0
test_tmpdir = t.tmp
test_cases = \
t/100_dpkg_divert.t
include $(top_srcdir)/Makecheck.am
clean-local: check-clean
|