blob: b4441adcb519cbb85bf5128e2c8ef5834abe6a48 (
plain) (
blame)
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
|
SUBDIRS = lib embed src data po doc
if ENABLE_TESTS
SUBDIRS += tests
endif
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
NULL =
EXTRA_DIST = \
autogen.sh \
COPYING.README \
HACKING \
MAINTAINERS \
ChangeLog \
$(NULL)
DISTCHECK_CONFIGURE_FLAGS = \
--enable-debug \
--enable-zeroconf \
--enable-gtk-doc \
--disable-schemas-install \
--disable-scrollkeeper
# Ignore gtk theme cache files on distcheck
distuninstallcheck_listfiles = find . -type f -print | grep -v 'icon-theme.cache'
# Build ChangeLog from git history
ChangeLog:
@if test -f $(top_srcdir)/.git/HEAD; then \
git log --stat > $@; \
fi
dist: ChangeLog
.PHONY: ChangeLog
|