blob: 9fbb7fe0b13e62860815f58f9c52ce2c2b00a775 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
AM_CPPFLAGS = \
-I. \
-I$(top_srcdir) \
-DDATADIR=\""$(datadir)"\" \
$(LIBEMPATHY_CFLAGS) \
$(WARN_CFLAGS)
BUILT_SOURCES = \
empathy-marshal.h \
empathy-marshal.c \
empathy-filter-glue.h \
empathy-chandler-glue.h
lib_LTLIBRARIES = libempathy.la
libempathy_la_SOURCES = \
empathy-conf.c \
empathy-contact.c \
empathy-avatar.c \
empathy-time.c \
empathy-presence.c \
empathy-debug.c \
empathy-utils.c \
empathy-message.c \
empathy-chatroom-manager.c \
empathy-chatroom.c \
empathy-contact-list.c \
empathy-contact-manager.c \
empathy-tp-group.c \
empathy-tp-contact-list.c \
empathy-tp-chat.c \
empathy-tp-chatroom.c \
empathy-tp-roomlist.c \
empathy-chandler.c \
empathy-filter.c \
empathy-idle.c \
empathy-log-manager.c \
empathy-marshal-main.c
libempathy_la_LIBADD = \
$(LIBEMPATHY_LIBS)
libempathydir = $(includedir)/libempathy/
libempathy_HEADERS = \
empathy-conf.h \
empathy-contact.h \
empathy-avatar.h \
empathy-time.h \
empathy-presence.h \
empathy-debug.h \
empathy-utils.h \
empathy-message.h \
empathy-chatroom-manager.h \
empathy-chatroom.h \
empathy-contact-list.h \
empathy-contact-manager.h \
empathy-tp-group.h \
empathy-tp-contact-list.h \
empathy-tp-chat.h \
empathy-tp-chatroom.h \
empathy-tp-roomlist.h \
empathy-chandler.h \
empathy-filter.h \
empathy-idle.h \
empathy-log-manager.h
%-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=$@ $<
empathy-filter-glue.h: empathy-filter.xml
$(LIBTOOL) --mode=execute $(DBUS_BINDING_TOOL) --prefix=empathy_filter --mode=glib-server --output=$@ $<
dtddir = $(datadir)/empathy
dtd_DATA = \
empathy-chatroom-manager.dtd
stylesheetdir = $(datadir)/empathy
stylesheet_DATA = \
empathy-log-manager.xsl
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libempathy.pc
EXTRA_DIST = \
empathy-marshal.list \
empathy-chandler.xml \
empathy-filter.xml \
$(stylesheet_DATA) \
$(dtd_DATA)
CLEANFILES = $(BUILT_SOURCES)
|