-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile.am
58 lines (49 loc) · 1.03 KB
/
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
50
51
52
53
54
55
56
57
58
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
NULL =
DISTCHECK_CONFIGURE_FLAGS = \
--without-elogind \
--without-systemd
SUBDIRS = \
src \
savers \
data \
doc \
po \
$(NULL)
EXTRA_DIST = \
autogen.sh \
COPYING \
COPYING.LIB \
COPYING.LGPL \
AUTHORS \
INSTALL \
ChangeLog \
NEWS \
$(NULL)
MAINTAINERCLEANFILES = \
*~ \
compile \
configure \
INSTALL \
COPYING \
install-sh \
missing \
mkinstalldirs \
config.guess \
ltmain.sh \
config.sub \
depcomp \
Makefile.in \
config.h.* \
aclocal.m4 \
acinclude.m4 \
$(NULL)
# Build ChangeLog from GIT history
ChangeLog:
$(AM_V_GEN) if test -d $(top_srcdir)/.git; then \
GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \
fi
dist: ChangeLog
.PHONY: ChangeLog
distuninstallcheck_listfiles = \
find . -type f -print | grep -v ./share/icons/hicolor/icon-theme.cache