-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile.am
79 lines (64 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
NULL =
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
GITIGNOREFILES = m4
SUBDIRS = po pixmaps mucharmap docs help
if HAVE_GTK_2
SUBDIRS += bindings
endif
distuninstallcheck_listfiles = find . -type -f -print | grep -v scrollkeeper
distcleancheck_listfiles = find . -type -f print | grep -v 'omf\.out'
desktopdir = $(datadir)/applications
desktop_in_files = mucharmap.desktop.in.in
desktop_DATA = $(desktop_in_files:.desktop.in.in=.desktop)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = mucharmap-$(MUCHARMAP_API_PC_VERSION).pc
EXTRA_DIST = \
ChangeLog.pre-2-23 \
ChangeLog.README \
autogen.sh \
gtkrc.win32 \
COPYING.UNICODE \
$(NULL)
DISTCHECK_CONFIGURE_FLAGS = \
--disable-scrollkeeper \
--disable-schemas-install \
--enable-gtk-doc \
--disable-introspection \
--with-gtk=2.0
CLEANFILES = \
$(desktop_DATA) \
$(gsettings_schema) \
$(NULL)
MAINTAINERCLEANFILES = \
$(srcdir)/INSTALL \
$(srcdir)/aclocal.m4 \
$(srcdir)/autoscan.log \
$(srcdir)/compile \
$(srcdir)/config.guess \
$(srcdir)/config.h.in \
$(srcdir)/config.sub \
$(srcdir)/configure.scan \
$(srcdir)/depcomp \
$(srcdir)/install-sh \
$(srcdir)/ltmain.sh \
$(srcdir)/missing \
$(srcdir)/mkinstalldirs \
$(srcdir)/omf.make \
$(srcdir)/xmldocs.make \
$(srcdir)/gtk-doc.make \
`find "$(srcdir)" -type f -name Makefile.in -print`
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
@INTLTOOL_DESKTOP_RULE@
-include $(top_srcdir)/git.mk