blob: 0c9d30fdaada7a2154bec7d36c87933afc466427 (
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
|
NULL =
modules_flags = -export_dynamic -avoid-version -module -no-undefined
plugindir = $(libdir)/gnome-settings-daemon/plugins
INCLUDES = \
-I$(top_srcdir)/src \
-DGNOME_SETTINGS_LOCALEDIR=\""$(datadir)/locale"\"\
$(SETTINGS_PLUGIN_CFLAGS) \
$(NULL)
plugin_LTLIBRARIES = \
libkeybindings.la \
$(NULL)
libkeybindings_la_SOURCES = \
gsd-keybindings-plugin.h \
gsd-keybindings-plugin.c \
gsd-keybindings-manager.h \
gsd-keybindings-manager.c \
eggaccelerators.h \
eggaccelerators.c \
$(NULL)
libkeybindings_la_LDFLAGS = \
$(PLUGIN_LIBTOOL_FLAGS) \
$(modules_flags) \
$(NULL)
libkeybindings_la_LIBADD = \
$(SETTINGS_PLUGIN_LIBS) \
$(NULL)
libkeybindings_la_CFLAGS = \
$(NULL)
plugin_in_files = \
keybindings.gnome-settings-plugin.desktop.in \
$(NULL)
%.gnome-settings-plugin: %.gnome-settings-plugin.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
plugin_DATA = $(plugin_in_files:.gnome-settings-plugin.desktop.in=.gnome-settings-plugin)
EXTRA_DIST = \
$(plugin_in_files) \
$(NULL)
CLEANFILES = \
$(plugin_DATA) \
$(NULL)
DISTCLEANFILES = \
$(plugin_DATA) \
$(NULL)
|