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
|
NULL =
noinst_PROGRAMS = \
test-background \
$(NULL)
test_background_SOURCES = \
test-background.c \
msd-background-manager.h \
msd-background-manager.c \
$(NULL)
test_background_CPPFLAGS = \
-I$(top_srcdir)/mate-settings-daemon \
-DMATE_SETTINGS_LOCALEDIR=\""$(datadir)/locale"\" \
$(AM_CPPFLAGS)
test_background_CFLAGS = \
$(SETTINGS_PLUGIN_CFLAGS) \
$(MATE_DESKTOP_CFLAGS) \
$(AM_CFLAGS) \
$(WARN_CFLAGS)
test_background_LDADD = \
$(top_builddir)/mate-settings-daemon/libmsd-profile.la \
$(SETTINGS_PLUGIN_LIBS) \
$(MATE_DESKTOP_LIBS) \
$(X11_LIBS) \
$(NULL)
plugin_LTLIBRARIES = \
libbackground.la \
$(NULL)
libbackground_la_SOURCES = \
msd-background-plugin.h \
msd-background-plugin.c \
msd-background-manager.h \
msd-background-manager.c \
$(NULL)
libbackground_la_CPPFLAGS = \
-I$(top_srcdir)/mate-settings-daemon \
-I$(top_srcdir)/plugins/background/libbackground \
-DMATE_SETTINGS_LOCALEDIR=\""$(datadir)/locale"\" \
$(AM_CPPFLAGS)
libbackground_la_CFLAGS = \
$(SETTINGS_PLUGIN_CFLAGS) \
$(MATE_DESKTOP_CFLAGS) \
$(AM_CFLAGS) \
$(WARN_CFLAGS)
libbackground_la_LDFLAGS = \
$(MSD_PLUGIN_LDFLAGS) \
$(NULL)
libbackground_la_LIBADD = \
$(SETTINGS_PLUGIN_LIBS) \
$(MATE_DESKTOP_LIBS) \
$(NULL)
plugin_in_files = \
background.mate-settings-plugin.desktop.in \
$(NULL)
plugin_DATA = $(plugin_in_files:.mate-settings-plugin.desktop.in=.mate-settings-plugin)
EXTRA_DIST = \
$(plugin_in_files) \
$(NULL)
CLEANFILES = \
$(plugin_DATA) \
$(NULL)
DISTCLEANFILES = \
$(plugin_DATA) \
$(NULL)
$(plugin_DATA): $(plugin_in_files)
$(AM_V_GEN) $(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
-include $(top_srcdir)/git.mk
|