diff options
author | Perberos <[email protected]> | 2011-12-01 23:53:21 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 23:53:21 -0300 |
commit | 505cabbd3036081f26586cabc64c26e7769c0ec9 (patch) | |
tree | 09e0498bf572128f5c9ab551531cb28d6d75e992 /plugins/dummy/Makefile.am | |
download | mate-settings-daemon-505cabbd3036081f26586cabc64c26e7769c0ec9.tar.bz2 mate-settings-daemon-505cabbd3036081f26586cabc64c26e7769c0ec9.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'plugins/dummy/Makefile.am')
-rw-r--r-- | plugins/dummy/Makefile.am | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/plugins/dummy/Makefile.am b/plugins/dummy/Makefile.am new file mode 100644 index 0000000..0f77530 --- /dev/null +++ b/plugins/dummy/Makefile.am @@ -0,0 +1,44 @@ +plugin_LTLIBRARIES = \ + libdummy.la + +libdummy_la_SOURCES = \ + gsd-dummy-manager.c \ + gsd-dummy-manager.h \ + gsd-dummy-plugin.c \ + gsd-dummy-plugin.h + +libdummy_la_CPPFLAGS = \ + -I$(top_srcdir)/mate-settings-daemon \ + -DMATE_SETTINGS_LOCALEDIR=\""$(datadir)/locale"\" \ + $(AM_CPPFLAGS) + +libdummy_la_CFLAGS = \ + $(SETTINGS_PLUGIN_CFLAGS) \ + $(AM_CFLAGS) + +libdummy_la_LDFLAGS = \ + $(GSD_PLUGIN_LDFLAGS) + +libdummy_la_LIBADD = \ + $(SETTINGS_PLUGIN_LIBS) + +plugin_in_files = \ + dummy.mate-settings-plugin.in + +plugin_DATA = $(plugin_in_files:.mate-settings-plugin.in=.mate-settings-plugin) + +EXTRA_DIST = \ + $(plugin_in_files) + +CLEANFILES = \ + $(plugin_DATA) + +DISTCLEANFILES = \ + $(plugin_DATA) + +@GSD_INTLTOOL_PLUGIN_RULE@ + +# override to _not_ install the test plugin +# do not copy into your plugin +install-pluginDATA: +install-pluginLTLIBRARIES: |