-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
85 lines (70 loc) · 1.92 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
80
81
82
83
84
85
NULL =
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
GITIGNOREFILES = m4
SUBDIRS = po pixmaps gucharmap docs
if ENABLE_CHARMAP
if HAVE_GNOME_DOC_UTILS
SUBDIRS += help
endif
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 = gucharmap.desktop.in.in
desktop_DATA = $(desktop_in_files:.desktop.in.in=.desktop)
schemadir = $(GCONF_SCHEMA_FILE_DIR)
schema_in_files = gucharmap.schemas.in
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = gucharmap-$(GUCHARMAP_API_PC_VERSION).pc
EXTRA_DIST = \
autogen.sh \
gtkrc.win32 \
gnome-doc-utils.make \
$(schema_in_files) \
COPYING.GFDL \
COPYING.UNICODE \
$(NULL)
DISTCHECK_CONFIGURE_FLAGS = \
--disable-scrollkeeper \
--disable-schemas-install \
--enable-gtk-doc \
--disable-introspection \
--enable-charmap \
--with-gtk=3.0
CLEANFILES = \
$(desktop_DATA) \
$(schema_DATA) \
$(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 \
$(srcdir)/gnome-doc-utils.make \
`find "$(srcdir)" -type f -name Makefile.in -print`
if ENABLE_CHARMAP
install-data-local: $(schema_DATA)
if GCONF_SCHEMAS_INSTALL
if test -z "$(DESTDIR)" ; then \
for p in $^ ; do \
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $$p 2>&1 > /dev/null; \
done \
fi
endif # GCONF_SCHEMAS_INSTALL
endif # ENABLE_CHARMAP
@INTLTOOL_DESKTOP_RULE@
@INTLTOOL_SCHEMAS_RULE@
-include $(top_srcdir)/git.mk