-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
52 lines (45 loc) · 1.47 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
SUBDIRS = data libgweather schemas icons doc po po-locations
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
AM_DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection
EXTRA_DIST = \
HACKING \
MAINTAINERS
MAINTAINERCLEANFILES = \
$(srcdir)/INSTALL \
$(srcdir)/ABOUT-NLS \
$(srcdir)/build-aux \
$(srcdir)/config.rpath \
$(srcdir)/gtk-doc.make \
$(srcdir)/m4 \
$(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
$(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \
$(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL)
CHANGELOG_GIT_RANGE = LIBGWEATHER_2_26_1..
dist-hook:
$(AM_V_GEN)if test -d "$(srcdir)/.git"; then \
( echo '# Generated by Makefile. Do not edit.'; echo; \
GIT_DIR="$(top_srcdir)/.git" ./missing --run \
git log $(CHANGELOG_GIT_RANGE) --no-color -M -C --name-status ) \
> ChangeLog.tmp \
&& mv -f ChangeLog.tmp $(distdir)/ChangeLog \
|| ( rm -f ChangeLog.tmp ; echo Failed to generate ChangeLog >&2 ); \
else \
echo A git checkout is required to generate ChangeLog >&2; \
fi
GITIGNOREFILES = \
$(PACKAGE)-\*.tar.{gz,bz2,xz} \
po-locations/Makefile.in.in \
po-locations/Makefile.in \
po-locations/Makefile \
po-locations/Makevars.template \
po-locations/POTFILES \
po-locations/Rules-quot \
po-locations/stamp-it \
po-locations/.intltool-merge-cache \
"po-locations/*.gmo" \
"po-locations/*.header" \
"po-locations/*.mo" \
"po-locations/*.sed" \
"po-locations/*.sin" \
po-locations/libgweather-locations.pot
-include $(top_srcdir)/git.mk