-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.am
45 lines (36 loc) · 1.13 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
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAG}
DISTCHECK_CONFIGURE_FLAGS = --with-cajadir='$${libdir}/caja/extensions-2.0-distcheck'
gsettings_schemas_in_files = org.mate.caja-open-terminal.gschema.xml.in
gsettings_SCHEMAS = $(gsettings_schemas_in_files:.gschema.xml.in=.gschema.xml)
@INTLTOOL_XML_NOMERGE_RULE@
@GSETTINGS_RULES@
convertdir = $(datadir)/MateConf/gsettings
convert_DATA = caja-open-terminal.convert
SUBDIRS = \
po \
src
EXTRA_DIST = \
intltool-extract.in \
intltool-update.in \
intltool-merge.in \
$(convert_DATA) \
$(gsettings_schemas_in_files)
DISTCLEANFILES = \
intltool-extract \
intltool-update \
intltool-merge \
po/.intltool-merge-cache \
org.mate.caja-open-terminal.gschema.xml
dist-hook:
@if test -d "$(srcdir)/.git"; \
then \
echo Creating ChangeLog && \
( cd "$(top_srcdir)" && \
echo '# Generated by Makefile. Do not edit.'; echo; \
$(top_srcdir)/missing --run git log --stat ) > ChangeLog.tmp \
&& mv -f ChangeLog.tmp $(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