~bcurtiswx/ubuntu/precise/empathy/3.4.2.1-0ubuntu1

« back to all changes in this revision

Viewing changes to libempathy/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sjoerd Simons
  • Date: 2007-05-20 15:31:42 UTC
  • Revision ID: james.westby@ubuntu.com-20070520153142-r3auwguxdgxhktqb
Tags: upstream-0.4
ImportĀ upstreamĀ versionĀ 0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AM_CPPFLAGS =                                           \
 
2
        -I.                                             \
 
3
        -I$(top_srcdir)                                 \
 
4
        -DDATADIR=\""$(datadir)"\"                      \
 
5
        -DLOCALEDIR=\""$(datadir)/locale"\"             \
 
6
        $(LIBEMPATHY_CFLAGS)                            \
 
7
        $(WARN_CFLAGS)
 
8
 
 
9
BUILT_SOURCES =                                         \
 
10
        empathy-marshal.h                               \
 
11
        empathy-marshal.c                               \
 
12
        empathy-chandler-glue.h
 
13
 
 
14
noinst_LTLIBRARIES = libempathy.la
 
15
 
 
16
libempathy_la_SOURCES =                                                         \
 
17
        gossip-conf.c                   gossip-conf.h                           \
 
18
        gossip-contact.c                gossip-contact.h                        \
 
19
        gossip-avatar.c                 gossip-avatar.h                         \
 
20
        gossip-time.c                   gossip-time.h                           \
 
21
        gossip-presence.c               gossip-presence.h                       \
 
22
        gossip-telepathy-group.c        gossip-telepathy-group.h                \
 
23
        gossip-paths.c                  gossip-paths.h                          \
 
24
        gossip-debug.c                  gossip-debug.h                          \
 
25
        gossip-utils.c                  gossip-utils.h                          \
 
26
        gossip-message.c                gossip-message.h                        \
 
27
        empathy-contact-list.c          empathy-contact-list.h                  \
 
28
        empathy-contact-manager.c       empathy-contact-manager.h               \
 
29
        empathy-tp-contact-list.c       empathy-tp-contact-list.h               \
 
30
        empathy-tp-chat.c               empathy-tp-chat.h                       \
 
31
        empathy-tp-chatroom.c           empathy-tp-chatroom.h                   \
 
32
        empathy-chandler.c              empathy-chandler.h                      \
 
33
        empathy-idle.c                  empathy-idle.h                          \
 
34
        empathy-marshal-main.c
 
35
 
 
36
libempathy_la_LIBADD =          \
 
37
        $(LIBEMPATHY_LIBS)
 
38
 
 
39
libempathy_includedir = $(includedir)/empathy/
 
40
 
 
41
%-marshal.h: %-marshal.list Makefile.am
 
42
        $(GLIB_GENMARSHAL) --header --prefix=$(subst -,_,$*)_marshal $< > $*-marshal.h
 
43
 
 
44
%-marshal.c: %-marshal.list Makefile.am
 
45
        $(GLIB_GENMARSHAL) --body --prefix=$(subst -,_,$*)_marshal $< > $*-marshal.c
 
46
 
 
47
%-marshal-main.c: %-marshal.c %-marshal.h
 
48
 
 
49
empathy-chandler-glue.h: empathy-chandler.xml
 
50
        $(LIBTOOL) --mode=execute $(DBUS_BINDING_TOOL) --prefix=empathy_chandler --mode=glib-server --output=$@ $<
 
51
 
 
52
EXTRA_DIST =                    \
 
53
        empathy-marshal.list    \
 
54
        empathy-chandler.xml
 
55
 
 
56
CLEANFILES = $(BUILT_SOURCES)