You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.1 KiB
95 lines
2.1 KiB
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-DG_LOG_DOMAIN=\"libsystray\" \
|
|
$(PLATFORM_CPPFLAGS)
|
|
|
|
plugindir = $(libdir)/xfce4/panel/plugins
|
|
|
|
plugin_LTLIBRARIES = \
|
|
libsystray.la
|
|
|
|
libsystray_built_sources = \
|
|
systray-dialog_ui.h \
|
|
systray-marshal.c \
|
|
systray-marshal.h
|
|
|
|
libsystray_la_SOURCES = \
|
|
$(libsystray_built_sources) \
|
|
systray.c \
|
|
systray.h \
|
|
systray-box.c \
|
|
systray-box.h \
|
|
systray-manager.c \
|
|
systray-manager.h \
|
|
systray-socket.c \
|
|
systray-socket.h
|
|
|
|
libsystray_la_CFLAGS = \
|
|
$(LIBX11_CFLAGS) \
|
|
$(GTK_CFLAGS) \
|
|
$(EXO_CFLAGS) \
|
|
$(XFCONF_CFLAGS) \
|
|
$(LIBXFCE4UTIL_CFLAGS) \
|
|
$(LIBXFCE4UI_CFLAGS) \
|
|
$(PLATFORM_CFLAGS)
|
|
|
|
libsystray_la_LDFLAGS = \
|
|
-avoid-version \
|
|
-module \
|
|
-no-undefined \
|
|
-export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
|
|
$(PLATFORM_LDFLAGS)
|
|
|
|
libsystray_la_LIBADD = \
|
|
$(top_builddir)/libxfce4panel/libxfce4panel-$(LIBXFCE4PANEL_VERSION_API).la \
|
|
$(top_builddir)/common/libpanel-common.la \
|
|
$(LIBX11_LIBS) \
|
|
$(GTK_LIBS) \
|
|
$(EXO_LIBS) \
|
|
$(LIBXFCE4UTIL_LIBS) \
|
|
$(LIBXFCE4UI_LIBS) \
|
|
$(XFCONF_LIBS)
|
|
|
|
libsystray_la_DEPENDENCIES = \
|
|
$(top_builddir)/libxfce4panel/libxfce4panel-$(LIBXFCE4PANEL_VERSION_API).la \
|
|
$(top_builddir)/common/libpanel-common.la
|
|
|
|
#
|
|
# .desktop file
|
|
#
|
|
desktopdir = $(datadir)/xfce4/panel/plugins
|
|
desktop_in_files = systray.desktop.in
|
|
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
|
|
@INTLTOOL_DESKTOP_RULE@
|
|
|
|
EXTRA_DIST = \
|
|
$(desktop_in_files) \
|
|
systray-dialog.glade \
|
|
systray-marshal.list
|
|
|
|
DISTCLEANFILES = \
|
|
$(desktop_DATA)
|
|
|
|
#
|
|
# Rules to auto-generate built sources
|
|
#
|
|
if MAINTAINER_MODE
|
|
BUILT_SOURCES = \
|
|
$(libsystray_built_sources)
|
|
|
|
DISTCLEANFILES += \
|
|
$(libsystray_built_sources)
|
|
|
|
systray-marshal.h: systray-marshal.list Makefile
|
|
$(AM_V_GEN) glib-genmarshal --header --internal --prefix=_systray_marshal $< > $@
|
|
|
|
systray-marshal.c: systray-marshal.list Makefile
|
|
$(AM_V_GEN) echo "#include \"systray-marshal.h\"" > $@ \
|
|
&& glib-genmarshal --prefix=_systray_marshal --body $< >> $@
|
|
|
|
systray-dialog_ui.h: systray-dialog.glade
|
|
$(AM_V_GEN) exo-csource --static --strip-comments --strip-content --name=systray_dialog_ui $< >$@
|
|
endif
|
|
|
|
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
|
|
|