Add new internationalisation files to CLEANFILES
[platform/upstream/folks.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4
2
3 SUBDIRS = \
4         folks \
5         backends \
6         tests \
7         tools \
8         po \
9         $(NULL)
10
11 if ENABLE_DOCS
12 SUBDIRS += docs
13 endif
14
15 DISTCHECK_CONFIGURE_FLAGS = --enable-docs
16
17 EXTRA_DIST = \
18         ABOUT-NLS \
19         autogen.sh \
20         po/Makevars.template \
21         po/Rules-quot \
22         po/boldquot.sed \
23         po/en@boldquot.header \
24         po/en@quot.header \
25         po/insert-header.sin \
26         po/missing \
27         po/quot.sed \
28         po/remove-potcdate.sin \
29         $(NULL)
30
31 MAINTAINERCLEANFILES = \
32         ABOUT-NLS \
33         $(srcdir)/INSTALL \
34         $(srcdir)/aclocal.m4 \
35         $(srcdir)/compile \
36         $(srcdir)/config.guess \
37         $(srcdir)/config.h.in \
38         $(srcdir)/config.rpath \
39         $(srcdir)/config.sub \
40         $(srcdir)/depcomp \
41         $(srcdir)/install-sh \
42         $(srcdir)/ltmain.sh \
43         $(srcdir)/missing \
44         $(srcdir)/mkinstalldirs \
45         $(srcdir)/ChangeLog \
46         `find "$(srcdir)" -type f -name Makefile.in -print` \
47         `find "m4" -type f -name "*.m4" -print` \
48         po/Makevars.template \
49         po/Rules-quot \
50         po/boldquot.sed \
51         po/en@boldquot.header \
52         po/en@quot.header \
53         po/insert-header.sin \
54         po/missing \
55         po/quot.sed \
56         po/remove-potcdate.sin \
57         $(NULL)
58
59 distclean-local:
60         if test "x$(srcdir)" = "x."; then :; else \
61                 rm -f ChangeLog; \
62         fi
63
64 ChangeLog:
65         @echo Creating $@
66         @if test -d "$(srcdir)/.git"; then \
67           (GIT_DIR=$(top_srcdir)/.git ./missing --run git log --stat) | fmt --split-only > $@.tmp \
68           && mv -f $@.tmp $@ \
69           || ($(RM) $@.tmp; \
70               echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
71               (test -f $@ || echo git-log is required to generate this file >> $@)); \
72         else \
73           test -f $@ || \
74           (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
75           echo A git checkout and git-log is required to generate this file >> $@); \
76         fi
77
78 .PHONY: ChangeLog
79
80 -include $(top_srcdir)/git.mk