blob: 77e1e617a8d59e7d9748c3f7bc441005f8a470c0 (
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
|
## 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 \
methods \
origins \
man
ACLOCAL_AMFLAGS = -I m4
dist_pkgdata_DATA = cputable ostable
EXTRA_DIST = \
debian/archtable \
debian/changelog \
debian/compat \
debian/control \
debian/copyright \
debian/dpkg-dev.install \
debian/dpkg.cfg \
debian/dpkg.docs \
debian/dpkg.install \
debian/dpkg.postinst \
debian/dpkg.postrm \
debian/dpkg.preinst \
debian/dpkg.prerm \
debian/dselect.cfg \
debian/dselect.install \
debian/pseudo-tags \
debian/rules \
debian/shlibs.default \
debian/shlibs.override
|