diff options
Diffstat (limited to 'panel-plugin/Makefile.am')
| -rw-r--r-- | panel-plugin/Makefile.am | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am new file mode 100644 index 0000000..fe8fc8a --- /dev/null +++ b/panel-plugin/Makefile.am @@ -0,0 +1,49 @@ +AM_CPPFLAGS = \ + -I$(top_srcdir) \ + -DG_LOG_DOMAIN=\"xfce4-title-plugin\" \ + -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \ + -DWNCK_I_KNOW_THIS_IS_UNSTABLE \ + $(PLATFORM_CPPFLAGS) + +# +# Title plugin +# +plugin_LTLIBRARIES = \ + libtitle.la + +plugindir = \ + $(libdir)/xfce4/panel/plugins + +libtitle_la_SOURCES = \ + title.c + +libtitle_la_CFLAGS = \ + $(LIBXFCE4UTIL_CFLAGS) \ + $(LIBXFCE4UI_CFLAGS) \ + $(LIBXFCE4PANEL_CFLAGS) \ + $(LIBWNCK_CFLAGS) \ + $(PLATFORM_CFLAGS) + +libtitle_la_LDFLAGS = \ + -avoid-version \ + -module \ + -no-undefined \ + -export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \ + $(PLATFORM_LDFLAGS) + +libtitle_la_LIBADD = \ + $(LIBXFCE4UTIL_LIBS) \ + $(LIBXFCE4UI_LIBS) \ + $(LIBWNCK_LIBS) \ + $(LIBXFCE4PANEL_LIBS) + +# +# Desktop file +# +desktopdir = \ + $(datadir)/xfce4/panel/plugins + +desktop_DATA = \ + title.desktop + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: |
