-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.am
42 lines (35 loc) · 1.34 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
noinst_LTLIBRARIES =
include Makefile.tests
include data/init/Makefile.include
include src/mongo-glib/Makefile.include
include src/neo/Makefile.include
include src/postal/Makefile.include
include src/push-glib/Makefile.include
include src/redis-glib/Makefile.include
include src/tools/Makefile.include
include tests/Makefile.include
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
DISTCHECK_CONFIGURE_FLAGS = --enable-silent-rules --enable-debug=yes
postaldocdir = ${datadir}/doc/postal
postaldoc_DATA =
postaldoc_DATA += AUTHORS
postaldoc_DATA += COPYING
postaldoc_DATA += NEWS
postaldoc_DATA += README
postaldoc_DATA += README.md
sysconf_DATA =
sysconf_DATA += data/conf/postald.conf
EXTRA_DIST += $(postaldoc_DATA)
EXTRA_DIST += $(sysconf_DATA)
dist-hook:
@if test -d "$(srcdir)/.git"; then \
(cd "$(srcdir)" && \
$(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
&& mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
|| (rm -f ChangeLog.tmp; \
echo Failed to generate ChangeLog >&2); \
else \
echo A git checkout is required to generate a ChangeLog >&2; \
fi
uninstall-local:
-rm -r $(postaldocdir)