~ubuntu-branches/ubuntu/precise/xfce4-panel/precise

« back to all changes in this revision

Viewing changes to plugins/actions/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2010-12-04 15:45:53 UTC
  • mto: (4.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 50.
  • Revision ID: james.westby@ubuntu.com-20101204154553-f452gq02eiksf09f
Tags: upstream-4.7.5
ImportĀ upstreamĀ versionĀ 4.7.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id$
2
1
 
3
 
INCLUDES =                                                              \
4
 
        -I$(top_srcdir)                                                 \
5
 
        -DG_LOG_DOMAIN=\"libactions\"                                   \
6
 
        -DLOCALEDIR=\"$(localedir)\"                                    \
 
2
INCLUDES = \
 
3
        -I$(top_srcdir) \
 
4
        -DG_LOG_DOMAIN=\"libactions\" \
7
5
        $(PLATFORM_CPPFLAGS)
8
6
 
9
 
plugindir =                                                             \
10
 
        $(libdir)/xfce4/panel-plugins
 
7
plugindir = $(libdir)/xfce4/panel/plugins
11
8
 
12
 
plugin_LTLIBRARIES =                                                    \
 
9
plugin_LTLIBRARIES = \
13
10
        libactions.la
14
11
 
15
 
libactions_la_SOURCES =                                                 \
16
 
        actions.c
17
 
 
18
 
libactions_la_CFLAGS =                                                  \
19
 
        $(GTK_CFLAGS)                                                   \
20
 
        $(LIBXFCE4UTIL_CFLAGS)                                          \
21
 
        $(LIBXFCEGUI4_CFLAGS)                                           \
 
12
libactions_built_sources = \
 
13
        actions-dialog_ui.h
 
14
 
 
15
libactions_la_SOURCES = \
 
16
        $(libactions_built_sources) \
 
17
        actions.c \
 
18
        actions.h
 
19
 
 
20
libactions_la_CFLAGS = \
 
21
        $(GTK_CFLAGS) \
 
22
        $(LIBXFCE4UTIL_CFLAGS) \
 
23
        $(LIBXFCE4UI_CFLAGS) \
 
24
        $(EXO_CFLAGS) \
 
25
        $(XFCONF_CFLAGS) \
22
26
        $(PLATFORM_CFLAGS)
23
27
 
24
 
libactions_la_LDFLAGS =                                                 \
25
 
        -avoid-version                                                  \
26
 
        -module                                                         \
 
28
libactions_la_LDFLAGS = \
 
29
        -avoid-version \
 
30
        -module \
 
31
        -no-undefined \
 
32
        -export-symbols-regex '^xfce_panel_module_(preinit|init|construct)' \
27
33
        $(PLATFORM_LDFLAGS)
28
34
 
29
 
if HAVE_CYGWIN
30
 
libactions_la_LDFLAGS +=                                                \
31
 
        -no-undefined
32
 
endif
33
 
 
34
 
libactions_la_LIBADD =                                                  \
35
 
        $(top_builddir)/libxfce4panel/libxfce4panel.la                  \
36
 
        $(GTK_LIBS)                                                     \
37
 
        $(LIBXFCE4UTIL_LIBS)                                            \
38
 
        $(LIBXFCEGUI4_LIBS)
39
 
 
40
 
libactions_la_DEPENDENCIES =                                            \
41
 
        $(top_builddir)/libxfce4panel/libxfce4panel.la
 
35
libactions_la_LIBADD = \
 
36
        $(top_builddir)/libxfce4panel/libxfce4panel-$(LIBXFCE4PANEL_VERSION_API).la \
 
37
        $(top_builddir)/common/libpanel-common.la \
 
38
        $(GTK_LIBS) \
 
39
        $(LIBXFCE4UTIL_LIBS) \
 
40
        $(LIBXFCE4UI_LIBS) \
 
41
        $(EXO_LIBS) \
 
42
        $(XFCONF_LIBS)
 
43
 
 
44
libactions_la_DEPENDENCIES = \
 
45
        $(top_builddir)/libxfce4panel/libxfce4panel-$(LIBXFCE4PANEL_VERSION_API).la \
 
46
        $(top_builddir)/common/libpanel-common.la
42
47
 
43
48
#
44
49
# .desktop file
45
50
#
46
 
desktopdir =                                                            \
47
 
        $(datadir)/xfce4/panel-plugins
48
 
 
49
 
desktop_in_in_files =                                                   \
50
 
        actions.desktop.in.in
51
 
 
52
 
desktop_in_files =                                                      \
53
 
        $(desktop_in_in_files:.desktop.in.in=.desktop.in)
54
 
 
55
 
%.desktop.in: %.desktop.in.in
56
 
        sed -e "s,\@libdir\@,$(libdir),g" < $< > $@
57
 
 
 
51
desktopdir = $(datadir)/xfce4/panel-plugins
 
52
desktop_in_files = actions.desktop.in
58
53
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
59
54
@INTLTOOL_DESKTOP_RULE@
60
55
 
61
 
EXTRA_DIST =                                                            \
62
 
        $(desktop_in_in_files)
63
 
 
64
 
DISTCLEANFILES =                                                        \
65
 
        $(desktop_DATA)                                                 \
 
56
EXTRA_DIST = \
 
57
        actions-dialog.glade \
66
58
        $(desktop_in_files)
67
59
 
 
60
DISTCLEANFILES = \
 
61
        $(desktop_DATA)
 
62
 
 
63
if MAINTAINER_MODE
 
64
BUILT_SOURCES = \
 
65
        $(libactions_built_sources)
 
66
 
 
67
DISTCLEANFILES += \
 
68
        $(libactions_built_sources)
 
69
 
 
70
actions-dialog_ui.h: actions-dialog.glade
 
71
        $(AM_V_GEN) exo-csource --static --strip-comments --strip-content --name=actions_dialog_ui $< >$@
 
72
endif
 
73
 
68
74
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: