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

« back to all changes in this revision

Viewing changes to wrapper/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
 
 
2
INCLUDES = \
 
3
        -I$(top_srcdir) \
 
4
        -DG_LOG_DOMAIN=\"xfce4-panel-wrapper\" \
 
5
        -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
 
6
        $(PLATFORM_CPPFLAGS)
 
7
 
 
8
wrapperdir = $(libdir)/xfce4/panel
 
9
 
 
10
wrapper_PROGRAMS = \
 
11
        wrapper
 
12
 
 
13
wrapper_built_sources = \
 
14
        wrapper-dbus-client-infos.h
 
15
 
 
16
wrapper_SOURCES = \
 
17
        $(wrapper_built_sources) \
 
18
        main.c \
 
19
        wrapper-module.c \
 
20
        wrapper-module.h \
 
21
        wrapper-plug.c \
 
22
        wrapper-plug.h
 
23
 
 
24
wrapper_CFLAGS = \
 
25
        $(GTK_CFLAGS) \
 
26
        $(DBUS_CFLAGS) \
 
27
        $(GMODULE_CFLAGS) \
 
28
        $(LIBXFCE4UTIL_CFLAGS) \
 
29
        $(PLATFORM_CFLAGS)
 
30
 
 
31
wrapper_LDFLAGS = \
 
32
        -no-undefined \
 
33
        $(PLATFORM_LDFLAGS)
 
34
 
 
35
wrapper_LDADD = \
 
36
        $(top_builddir)/libxfce4panel/libxfce4panel-$(LIBXFCE4PANEL_VERSION_API).la \
 
37
        $(GTK_LIBS) \
 
38
        $(DBUS_LIBS) \
 
39
        $(GMODULE_LIBS) \
 
40
        $(LIBXFCE4UTIL_LIBS)
 
41
 
 
42
wrapper_DEPENDENCIES = \
 
43
        $(top_builddir)/libxfce4panel/libxfce4panel-$(LIBXFCE4PANEL_VERSION_API).la
 
44
 
 
45
if MAINTAINER_MODE
 
46
 
 
47
wrapper-dbus-client-infos.h: $(top_builddir)/panel/panel-plugin-external-wrapper-infos.xml Makefile
 
48
        $(AM_V_GEN) dbus-binding-tool --mode=glib-client $< > $@
 
49
 
 
50
#wrapper-marshal.h: $(top_builddir)/panel/panel-marshal.list Makefile
 
51
#       $(AM_V_GEN)glib-genmarshal --header --prefix=wrapper_marshal $< > $@
 
52
#
 
53
#wrapper-marshal.c: $(top_builddir)/panel/panel-marshal.list Makefile
 
54
#       $(AM_V_GEN) echo "#include <wrapper/wrapper-marshal.h>" > $@ \
 
55
#       && glib-genmarshal --body --prefix=wrapper_marshal $< >> $@
 
56
 
 
57
BUILT_SOURCES = \
 
58
        $(wrapper_built_sources)
 
59
 
 
60
DISTCLEANFILES = \
 
61
        $(wrapper_built_sources)
 
62
 
 
63
endif
 
64
 
 
65
# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: