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
|
plugindir = $(libdir)/xfce4/panel/plugins
plugin_LTLIBRARIES = libfsguard.la
libfsguard_la_SOURCES = fsguard.c
libfsguard_la_CFLAGS = \
-I$(top_srcdir) \
@LIBXFCE4UI_CFLAGS@ \
@LIBXFCE4UTIL_CFLAGS@ \
@LIBXFCE4PANEL_CFLAGS@ \
-DPACKAGE_LOCALE_DIR=\"$(localedir)\"
libfsguard_la_LIBADD = \
@LIBXFCE4UI_LIBS@ \
@LIBXFCE4UTIL_LIBS@ \
@LIBXFCE4PANEL_LIBS@
libfsguard_la_LDFLAGS = \
-avoid-version \
-module \
-no-undefined \
-export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
$(PLATFORM_LDFLAGS)
# .desktop file
#
desktop_in_files = fsguard.desktop.in
desktopdir = $(datadir)/xfce4/panel/plugins
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@
EXTRA_DIST = $(desktop_in_files)
DISTCLEANFILES = $(desktop_DATA)
|