blob: 94148da139a09c2b8a983cdad0a3e05cadb5eb7b (
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
|
## Process this file with automake to produce Makefile.in
if WITH_DSELECT
MAYBE_DSELECT = dselect
endif
SUBDIRS = \
intl \
getopt \
lib \
src \
$(MAYBE_DSELECT) \
dpkg-deb \
dpkg-split \
utils \
scripts \
po \
origins \
man
ACLOCAL_AMFLAGS = -I m4
dist_pkgdata_DATA = cputable ostable triplettable
EXTRA_DIST = \
debian/archtable \
debian/changelog \
debian/compat \
debian/control \
debian/copyright \
debian/dpkg-dev.install \
debian/dpkg-dev.lintian-overrides \
debian/dpkg.cfg \
debian/dpkg.docs \
debian/dpkg.install \
debian/dpkg.postinst \
debian/dpkg.postrm \
debian/dpkg.preinst \
debian/dpkg.prerm \
debian/dpkg.logrotate \
debian/dpkg.lintian-overrides \
debian/dselect.cfg \
debian/dselect.install \
debian/dselect.lintian-overrides \
debian/source.lintian-overrides \
debian/usertags \
debian/rules \
debian/shlibs.default \
debian/shlibs.override
|