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