~ubuntu-branches/ubuntu/natty/empathy/natty-updates

« back to all changes in this revision

Viewing changes to libempathy/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sjoerd Simons
  • Date: 2008-03-10 16:39:07 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20080310163907-tv41g2zmf0qqgi85
Tags: 0.22.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AM_CPPFLAGS =                                           \
2
2
        -I.                                             \
3
3
        -I$(top_srcdir)                                 \
 
4
        -I$(top_builddir)                               \
4
5
        -DDATADIR=\""$(datadir)"\"                      \
5
6
        $(LIBEMPATHY_CFLAGS)                            \
6
7
        $(WARN_CFLAGS)
12
13
        empathy-enum-types.h                            \
13
14
        empathy-enum-types.c                            \
14
15
        empathy-filter-glue.h                           \
15
 
        empathy-chandler-glue.h                         \
16
 
        tp-stream-engine-gen.h
 
16
        empathy-chandler-glue.h
17
17
 
18
18
lib_LTLIBRARIES = libempathy.la
19
19
 
41
41
        empathy-chandler.c                              \
42
42
        empathy-filter.c                                \
43
43
        empathy-idle.c                                  \
44
 
        empathy-log-manager.c
 
44
        empathy-log-manager.c                           \
 
45
        empathy-irc-network-manager.c                   \
 
46
        empathy-irc-network.c                           \
 
47
        empathy-irc-server.c
45
48
 
46
49
# do not distribute generated files
47
50
nodist_libempathy_la_SOURCES =\
48
51
        $(BUILT_SOURCES)
49
52
 
50
53
libempathy_la_LIBADD =          \
 
54
        $(top_builddir)/extensions/libemp-extensions.la \
51
55
        $(LIBEMPATHY_LIBS)
52
56
 
53
57
libempathy_la_LDFLAGS =         \
78
82
        empathy-chandler.h                      \
79
83
        empathy-filter.h                        \
80
84
        empathy-idle.h                          \
81
 
        empathy-log-manager.h
 
85
        empathy-log-manager.h                   \
 
86
        empathy-irc-network-manager.h           \
 
87
        empathy-irc-network.h                   \
 
88
        empathy-irc-server.h
82
89
 
83
90
libempathy_includedir = $(includedir)/libempathy/
84
91
libempathy_include_HEADERS =                    \
87
94
 
88
95
empathy-marshal.list: $(libempathy_la_SOURCES) Makefile.am
89
96
        ( cd $(srcdir) && \
90
 
        sed -n -e 's/.*empathy_marshal_\([[:upper:]]*__[[:upper:]_]*\).*/\1/p' \
 
97
        sed -n -e 's/.*empathy_marshal_\([[:upper:][:digit:]]*__[[:upper:][:digit:]_]*\).*/\1/p' \
91
98
        $(libempathy_la_SOURCES) ) \
92
99
        | sed -e 's/__/:/' -e 'y/_/,/' | sort -u > $@.tmp
93
100
        if cmp -s $@.tmp $@; then \
108
115
empathy-filter-glue.h: empathy-filter.xml Makefile
109
116
        $(LIBTOOL) --mode=execute $(DBUS_BINDING_TOOL) --prefix=empathy_filter --mode=glib-server --output=$@ $<
110
117
 
111
 
tp-stream-engine-gen.h: tp-stream-engine.xml Makefile.am
112
 
        $(LIBTOOL) --mode=execute $(DBUS_BINDING_TOOL) --prefix=tp_stream_engine --mode=glib-client --output=$@ $<
113
 
 
114
118
 
115
119
empathy-enum-types.h: stamp-empathy-enum-types.h
116
120
        @true
154
158
dtd_DATA =                                      \
155
159
        empathy-status-presets.dtd              \
156
160
        empathy-contact-groups.dtd              \
157
 
        empathy-chatroom-manager.dtd
 
161
        empathy-chatroom-manager.dtd            \
 
162
        empathy-irc-networks.dtd
158
163
 
159
164
stylesheetdir = $(datadir)/empathy
160
165
stylesheet_DATA =               \
161
166
        empathy-log-manager.xsl
162
167
 
 
168
ircnetworksdir = $(datadir)/empathy
 
169
ircnetworks_DATA =              \
 
170
        irc-networks.xml
 
171
 
163
172
pkgconfigdir = $(libdir)/pkgconfig
164
173
pkgconfig_DATA = libempathy.pc
165
174
 
167
176
        empathy-marshal.list    \
168
177
        empathy-chandler.xml    \
169
178
        empathy-filter.xml      \
170
 
        tp-stream-engine.xml    \
171
179
        $(stylesheet_DATA)      \
172
 
        $(dtd_DATA)
 
180
        $(dtd_DATA)             \
 
181
        $(ircnetworks_DATA)
173
182
 
174
183
CLEANFILES =                            \
175
184
        $(BUILT_SOURCES)                \