~ubuntu-branches/ubuntu/hardy/xfce-mcs-plugins/hardy

« back to all changes in this revision

Viewing changes to plugins/shortcuts_plugin/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jani Monoses
  • Date: 2006-04-11 17:40:35 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20060411174035-4y90hf4358m65r1k
Tags: 4.3.0svn+r20838-0ubuntu1
Upstream svn snapshot (merge keyboard and shortcut plugins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
plugindir = $(libdir)/xfce4/mcs-plugins
2
 
 
3
 
plugin_LTLIBRARIES = shortcuts_plugin.la
4
 
 
5
 
shortcuts_plugin_la_SOURCES =                                           \
6
 
        shortcuts_plugin.c                                              \
7
 
        keys_management.c                                               \
8
 
        keys_management.h
9
 
 
10
 
shortcuts_plugin_la_CFLAGS =                                            \
11
 
        -I$(top_srcdir)                                                 \
12
 
        @LIBX11_CFLAGS@                                                 \
13
 
        @LIBXFCEGUI4_CFLAGS@                                            \
14
 
        @XFCE_MCS_MANAGER_CFLAGS@                                       \
15
 
        -DLOCALEDIR=\""$(localedir)"\"                                  \
16
 
        -DPACKAGE_DATADIR=\"$(pkgdatadir)\"
17
 
 
18
 
shortcuts_plugin_la_LDFLAGS =                                           \
19
 
        -avoid-version                                                  \
20
 
        -module
21
 
 
22
 
if HAVE_CYGWIN
23
 
shortcuts_plugin_la_LDFLAGS +=                                          \
24
 
        -no-undefined                                                   \
25
 
        -export-symbols $(datadir)/xfce4/devel/mcs-manager.def
26
 
        @XFCE_MCS_MANAGER_LDFLAGS@
27
 
endif
28
 
 
29
 
defaultsdir = $(pkgdatadir)/shortcuts
30
 
defaults_DATA = default.xml
31
 
 
32
 
desktopdir = $(datadir)/applications
33
 
desktop_in_files = xfce-shortcuts-settings.desktop.in
34
 
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
35
 
@INTLTOOL_DESKTOP_RULE@
36
 
 
37
 
EXTRA_DIST =                                                            \
38
 
        $(desktop_in_files)                                             \
39
 
        $(defaults_DATA)
40
 
 
41
 
DISTCLEANFILES =                                                        \
42
 
        $(desktop_DATA)
43