blob: efc7f290df679f72bc759c0e02f3bdbce35c95ce (
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
|
## Process this file with automake to produce Makefile.in
SUBDIRS = \
po \
libglabels \
src \
data \
templates \
help \
docs
EXTRA_DIST = \
README \
COPYING.README_FIRST \
COPYING \
COPYING-DOCS \
COPYING-LIBGLABELS \
COPYING-TEMPLATES \
AUTHORS \
ChangeLog \
INSTALL \
NEWS \
TODO \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
gnome-doc-utils.make \
glabels.spec.in \
glabels.spec \
MESSAGE-OF-DOOM
DISTCLEANFILES = gnome-doc-utils.make
DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
dist-hook:
@if test -d "$(srcdir)/.git"; \
then \
echo Creating ChangeLog && \
(GIT_DIR=$(top_srcdir)/.git \
./missing --run git log -M -C --name-status --date=short --no-color) | \
fmt --split-only > ChangeLog.tmp \
&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
|| ( rm -f ChangeLog.tmp ; \
echo Failed to generate ChangeLog >&2 ); \
else \
echo A git clone is required to generate a ChangeLog >&2; \
fi
|