blob: 8749e5ddec03045ee6c11afdde28daca3e042660 (
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
|
## Process this file with automake to produce Makefile.in
if WITH_DSELECT
MAYBE_DSELECT = dselect
endif
SUBDIRS = \
lib \
src \
$(MAYBE_DSELECT) \
dpkg-deb \
dpkg-split \
utils \
scripts \
po \
man
ACLOCAL_AMFLAGS = -I m4
dist_pkgdata_DATA = cputable ostable triplettable
EXTRA_DIST = \
ChangeLog.old \
README.api \
README.feature-removal-schedule \
README.translators \
doc/triggers.txt \
debian/archtable \
debian/changelog \
debian/compat \
debian/control \
debian/copyright \
debian/dpkg-dev.docs \
debian/dpkg-dev.install \
debian/dpkg-dev.preinst \
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.logrotate \
debian/dpkg.links \
debian/dpkg.lintian-overrides \
debian/dselect.cfg \
debian/dselect.docs \
debian/dselect.install \
debian/dselect.preinst \
debian/dselect.lintian-overrides \
debian/source.lintian-overrides \
debian/usertags \
debian/rules \
debian/shlibs.default \
debian/shlibs.override
.PHONY: ChangeLog
DISTCLEANFILES = ChangeLog
ChangeLog:
git log -C --stat 1.15.0.. >$@
# If we create the dist tarball from the git repository, make sure
# that we're not forgetting some files...
dist-hook:
if [ -e .git ]; then \
for file in `git ls-files | grep -v .gitignore`; do \
if [ ! -e "$(distdir)/$$file" ]; then \
echo "$$file is missing in $(distdir)" >&2 ; \
exit 1 ; \
fi ; \
done ; \
fi
|