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
|
if HAVE_XFCEMCS
orage_plugindir = \
$(libdir)/xfce4/mcs-plugins
orage_plugin_LTLIBRARIES = orage_plugin.la
orage_plugin_la_LDFLAGS = \
-avoid-version \
-module
orage_plugin_la_SOURCES = \
xfcalendar_plugin.c
orage_plugin_la_CFLAGS = \
$(XFCE_MCS_MANAGER_CFLAGS) \
-DBINDIR=\"$(bindir)\" \
-DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
-DSYSCONFDIR=\"$(sysconfdir)\" \
-DDATADIR=\"$(pkgdatadir)\"
endif
desktopdir = $(datadir)/applications
desktop_in_files = xfce-xfcalendar-settings.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
@INTLTOOL_DESKTOP_RULE@
EXTRA_DIST = \
$(desktop_in_files)
DISTCLEANFILES = \
$(desktop_DATA)
|