blob: 02ed1746f55772c38376859f5b78b42de65470fc (
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
|
include $(top_srcdir)/Makefile.gtester
INCLUDES = -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)\" \
-DGETTEXT_PACKAGE=\"dconf-editor\" \
-w
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)
gsettings_SCHEMAS = ca.desrt.dconf-editor.gschema.xml
@GSETTINGS_RULES@
nobase_data_DATA = $(icons)
icons = \
icons/hicolor/32x32/apps/dconf-editor.png \
icons/hicolor/48x48/apps/dconf-editor.png \
icons/hicolor/64x64/apps/dconf-editor.png \
icons/hicolor/128x128/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/hicolor; \
fi
pkgdatadir = $(datadir)/dconf-editor
dist_pkgdata_DATA = dconf-editor.ui dconf-editor-menu.ui
EXTRA_DIST = $(gsettings_SCHEMAS) $(icons)
|