blob: b5a053a58cab56f66a27cf6f20a20d4e18f1bf01 (
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
|
NULL =
SUBDIRS = \
libbackground \
$(NULL)
modules_flags = -export_dynamic -avoid-version -module -no-undefined
plugindir = $(libdir)/gnome-settings-daemon/plugins
INCLUDES = \
-I$(top_srcdir)/src \
-I$(top_builddir)/plugins/background/libbackground \
-DGNOME_SETTINGS_LOCALEDIR=\""$(datadir)/locale"\" \
$(SETTINGS_PLUGIN_CFLAGS) \
$(NULL)
plugin_LTLIBRARIES = \
libbackground.la \
$(NULL)
libbackground_la_SOURCES = \
gsd-background-plugin.h \
gsd-background-plugin.c \
gsd-background-manager.h \
gsd-background-manager.c \
$(NULL)
libbackground_la_LDFLAGS = \
$(PLUGIN_LIBTOOL_FLAGS) \
$(modules_flags) \
$(NULL)
libbackground_la_LIBADD = \
$(SETTINGS_PLUGIN_LIBS) \
$(top_builddir)/plugins/background/libbackground/libbackground.la \
$(NULL)
libbackground_la_CFLAGS = \
$(NULL)
plugin_in_files = \
background.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)
|