forked from GNOME/gnome-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
50 lines (44 loc) · 1.22 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
SUBDIRS = src data po doc
DIST_SUBDIRS = src data po doc
EXTRA_DIST = \
$(gnome_calendardoc_DATA) \
INSTALL \
THANKS \
HACKING \
TODO \
autogen.sh
DISTCHECK_CONFIGURE_FLAGS = \
--enable-appstream-util \
--disable-gtk-doc
# Remove doc directory on uninstall
uninstall-local:
@if test -d "$(docdir)"; \
then \
-rm -r $(docdir); \
fi
AUTHORS:
@if test -d "$(srcdir)/.git"; \
then \
echo Creating $@ && \
( cd "$(top_srcdir)" && \
echo '# Generated by Makefile. Do not edit.'; echo; \
git log --no-merges --pretty=format:"%an" src \
| sort | uniq ) > [email protected] \
&& mv -f [email protected] $@ \
|| ( rm -f [email protected] ; \
echo Failed to generate $@ >&2 ); \
fi
dist-hook:
@if test -d "$(srcdir)/.git"; \
then \
echo Creating ChangeLog && \
( cd "$(top_srcdir)" && \
echo '# Generated by Makefile. Do not edit.'; echo; \
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 clone is required to generate a ChangeLog >&2; \
fi
.PHONY: AUTHORS