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
|
## Process this file with automake to produce Makefile.in
SUBDIRS = po src pixmaps data doc contrib
dist_doc_DATA = \
README\
COPYING\
AUTHORS\
ChangeLog\
INSTALL\
HACKING\
NEWS\
TODO
bzr_dirstate = $(wildcard .bzr/checkout/dirstate)
ChangeLog: $(bzr_dirstate)
(bzr log --verbose --include-merged || \
bzr log --verbose) | fmt -s > $@.tmp && mv $@.tmp $@
# Copy all the spec files. Of course, only one is actually used.
dist-hook:
for specfile in *.spec; do \
if test -f $$specfile; then \
cp -p $$specfile $(distdir); \
fi \
done
|