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 35 36 37
|
# $Id: Makefile.am 22202 2006-06-26 18:51:10Z olivier $
INCLUDES = \
-I$(top_srcdir) \
-I$(top_builddir) \
-DPACKAGE_LOCALE_DIR=\""$(localedir)"\" \
$(PLATFORM_CPPFLAGS)
plugindir = $(libdir)/xfce4/mcs-plugins
plugin_LTLIBRARIES = \
fm_plugin.la
fm_plugin_la_SOURCES = \
fm_plugin.c
fm_plugin_la_CFLAGS = \
$(LIBX11_CFLAGS) \
$(LIBXFCEGUI4_CFLAGS) \
$(XFCE_MCS_MANAGER_CFLAGS) \
$(PLATFORM_CFLAGS)
fm_plugin_la_LDFLAGS = \
-avoid-version \
-module \
-no-undefined \
$(PLATFORM_LDFLAGS)
fm_plugin_la_LIBADD = \
$(XFCE_MCS_MANAGER_LIBS)
if HAVE_CYGWIN
fm_plugin_la_LDFLAGS += \
-export-symbols $(datadir)/xfce4/devel/mcs-manager.def \
$(XFCE_MCS_MANAGER_LDFLAGS)
endif
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake:
|