diff options
| author | Mikhail Osipov <mike.osipov@gmail.com> | 2020-06-07 01:22:21 +0300 |
|---|---|---|
| committer | Mikhail Osipov <mike.osipov@gmail.com> | 2020-06-19 22:36:41 +0300 |
| commit | 1e14e4aa2d90afb8a877767c1e6f247e4a8eceb9 (patch) | |
| tree | cf626cf9ef6e5169dd8eb1152a7ad02e5433119d /panel-plugin/Makefile.am | |
Update windowheader plugin
- sync with updates of wnck
- sync with updates of xfce
- add build scripts
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: |
