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

« back to all changes in this revision

Viewing changes to plugins/ui_plugin/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Simon Huggins
  • Date: 2004-04-27 22:08:03 UTC
  • Revision ID: james.westby@ubuntu.com-20040427220803-vhxi3wkask9cku5d
Tags: upstream-4.0.5
ImportĀ upstreamĀ versionĀ 4.0.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
plugindir = @XFCE_MCS_MANAGER_PLUGINSDIR@
 
2
 
 
3
plugin_LTLIBRARIES = ui_plugin.la
 
4
 
 
5
ui_plugin_la_SOURCES =                                                  \
 
6
        ui_plugin.c                                                     \
 
7
        inline-icon.h
 
8
 
 
9
ui_plugin_la_CFLAGS =                                                   \
 
10
        -I$(top_srcdir)                                         \
 
11
        -I$(top_srcdir)/plugins/gtk_common                              \
 
12
        @LIBX11_CFLAGS@                                                 \
 
13
        @LIBXFCEGUI4_CFLAGS@                                            \
 
14
        @XFCE_MCS_MANAGER_CFLAGS@                                       \
 
15
        -DLOCALEDIR=\""$(localedir)"\"
 
16
 
 
17
ui_plugin_la_LDFLAGS =                                                  \
 
18
        -avoid-version                                                  \
 
19
        -export-dynamic                                                 \
 
20
        -module
 
21
 
 
22
ui_plugin_la_LIBADD =                                                   \
 
23
        $(top_builddir)/plugins/gtk_common/libgtkcommon.la              \
 
24
        @LIBS@                                                          \
 
25
        @LIBX11_LIBS@                                                   \
 
26
        @XFCE_MCS_MANAGER_LIBS@
 
27
 
 
28
EXTRA_DIST =                                                            \
 
29
        inline-icon.h                                                   \
 
30
        icon.png
 
31
 
 
32
noinst_DATA =                                                           \
 
33
        inline-icon.h                                                   \
 
34
        icon.png
 
35
 
 
36
inline-icon.h: $(srcdir)/icon.png
 
37
        gdk-pixbuf-csource --raw --build-list                           \
 
38
        default_icon_data $(srcdir)/icon.png > inline-icon.h
 
39