forked from guyt101z/glabels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
49 lines (44 loc) · 943 Bytes
/
Makefile.am
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
## Process this file with automake to produce Makefile.in
SUBDIRS = \
po \
libglabels \
libglbarcode \
src \
data \
templates \
help \
docs
EXTRA_DIST = \
README \
COPYING.README_FIRST \
COPYING \
COPYING-DOCS \
COPYING-LIBS \
COPYING-TEMPLATES \
AUTHORS \
ChangeLog \
INSTALL \
NEWS \
TODO \
intltool-extract.in \
intltool-merge.in \
intltool-update.in \
glabels.spec.in \
glabels.spec
DISTCLEANFILES =
DISTCHECK_CONFIGURE_FLAGS = \
--disable-scrollkeeper \
--enable-gtk-doc
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