blob: 997698607afd561166032b46cdbbfaf2e7f2c869 (
plain)
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
53
54
55
56
57
58
59
60
61
62
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
if USE_NLS
PO_SUBDIR = po
endif
if ENABLE_JPEG
jpeg_DIRS = jpegutils
endif
SUBDIRS = $(PO_SUBDIR) $(jpeg_DIRS) cut-n-paste src man plugins help data doc
if ENABLE_THUMBNAILER
SUBDIRS += thumbnailer
endif
EXTRA_DIST = \
AUTHORS \
autogen.sh \
ChangeLog \
COPYING \
NEWS \
README
DISTCLEANFILES =
DISTCHECK_CONFIGURE_FLAGS = \
--disable-schemas-install \
--enable-gtk-doc \
--enable-compile-warnings=no \
CFLAGS='-Wno-deprecated-declarations'
distuninstallcheck_listfiles = find . -type f -print | grep -v /share/mate/help/ | grep -v \.omf
MAINTAINERCLEANFILES = \
$(srcdir)/aclocal.m4 \
$(srcdir)/config.guess \
$(srcdir)/config.h.in \
$(srcdir)/config.sub \
$(srcdir)/depcomp \
$(srcdir)/gtk-doc.make \
$(srcdir)/install-sh \
$(srcdir)/ltmain.sh \
$(srcdir)/missing \
$(srcdir)/mkinstalldirs \
$(srcdir)/omf.make \
$(srcdir)/xmldocs.make
# This is the last commit before the ChangeLog was converted
CHANGELOG_START = 6a7944721e667a5c2d87e841917d850aea885019
# Build ChangeLog from GIT history
ChangeLog:
$(AM_V_GEN) if test -d $(top_srcdir)/.git; then \
GIT_DIR="$(top_srcdir)/.git" git log --stat > $@; \
fi
dist: ChangeLog
.PHONY: ChangeLog
-include $(top_srcdir)/git.mk
|