summaryrefslogtreecommitdiff
path: root/editor/Makefile.am
blob: f746069b3110f4853b8f66eec52be53750ac03c8 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
include $(top_srcdir)/Makefile.gtester

AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/client

bin_PROGRAMS = dconf-editor

dconf_editor_VALAFLAGS = --vapidir ../client --pkg gtk+-3.0 --pkg gmodule-2.0 --pkg libxml-2.0 --pkg dconf

dconf_editor_LDADD = \
	../client/libdconf.so.1		\
	$(gtk_LIBS)			\
	$(gee_LIBS)			\
	$(gmodule_LIBS)			\
	$(libxml_LIBS)

dconf_editor_CFLAGS = \
	$(gtk_CFLAGS)				\
	$(gee_CFLAGS)				\
	$(libxml_CFLAGS)			\
	-DPKGDATADIR=\"$(pkgdatadir)\"		\
	-DVERSION=\"$(VERSION)\"		\
	-DLOCALEDIR=\"$(localedir)\"		\
	-DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\"\
	-w

resource_data = \
	dconf-editor.gresource.xml	\
	dconf-editor-menu.ui		\
	dconf-editor.ui

resources.c: $(resource_data)
	$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --target=$@ --generate-source $<

nodist_dconf_editor_SOURCES = resources.c

dconf_editor_SOURCES = \
	config.vapi		\
	dconf-editor.vala	\
	dconf-model.vala	\
	dconf-schema.vala	\
	dconf-view.vala

desktopdir = $(datadir)/applications
desktop_in_files = dconf-editor.desktop.in.in
desktop_DATA = $(desktop_in_files:.desktop.in.in=.desktop)
CLEANFILES = $(desktop_DATA) resources.c
@INTLTOOL_DESKTOP_RULE@

appdatadir = $(datadir)/appdata
dist_appdata_DATA = dconf-editor.appdata.xml

gsettings_SCHEMAS = ca.desrt.dconf-editor.gschema.xml
@GSETTINGS_RULES@

nobase_data_DATA = $(icons)

icons = \
	icons/HighContrast/16x16/apps/dconf-editor.png		\
	icons/HighContrast/22x22/apps/dconf-editor.png		\
	icons/HighContrast/24x24/apps/dconf-editor.png		\
	icons/HighContrast/32x32/apps/dconf-editor.png		\
	icons/HighContrast/48x48/apps/dconf-editor.png		\
	icons/HighContrast/256x256/apps/dconf-editor.png	\
	icons/hicolor/16x16/apps/dconf-editor.png		\
	icons/hicolor/22x22/apps/dconf-editor.png		\
	icons/hicolor/24x24/apps/dconf-editor.png		\
	icons/hicolor/32x32/apps/dconf-editor.png		\
	icons/hicolor/48x48/apps/dconf-editor.png		\
	icons/hicolor/64x64/apps/dconf-editor.png		\
	icons/hicolor/256x256/apps/dconf-editor.png

install-data-hook: update-icon-cache
uninstall-hook: update-icon-cache
update-icon-cache:
	if test -z "$(DESTDIR)"; then \
		gtk-update-icon-cache -f -t $(datadir)/icons/HighContrast; \
		gtk-update-icon-cache -f -t $(datadir)/icons/hicolor; \
	fi

EXTRA_DIST = $(gsettings_SCHEMAS) $(icons) $(resource_data)