blob: 935ac4d68e7f23c31f9b65cb55c2211f07387236 (
plain)
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
99
100
101
|
EXTRA_DIST = \
directconn.c \
directconn.h \
Makefile.mingw
pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)
MSNSOURCES = \
cmdproc.c \
cmdproc.h \
command.c \
command.h \
contact.c\
contact.h\
dialog.c \
dialog.h \
error.c \
error.h \
group.c \
group.h \
history.c \
history.h \
httpconn.c \
httpconn.h \
msg.c \
msg.h \
msn.c \
msn.h \
nexus.c \
nexus.h \
notification.c \
notification.h \
object.c \
object.h \
oim.c\
oim.h\
page.c \
page.h \
servconn.c \
servconn.h \
session.c \
session.h \
slp.c \
slp.h \
slpcall.c \
slpcall.h \
slplink.c \
slplink.h \
slpmsg.c \
slpmsg.h \
slpsession.c \
slpsession.h \
soap.c\
soap.h\
soap2.c \
soap2.h \
state.c \
state.h \
switchboard.c \
switchboard.h \
sync.c \
sync.h \
table.c \
table.h \
transaction.c \
transaction.h \
user.c \
user.h \
userlist.c \
userlist.h \
msnutils.c \
msnutils.h
AM_CFLAGS = $(st)
libmsn_la_LDFLAGS = -module -avoid-version
if STATIC_MSN
st = -DPURPLE_STATIC_PRPL
noinst_LIBRARIES = libmsn.a
libmsn_a_SOURCES = $(MSNSOURCES)
libmsn_a_CFLAGS = $(AM_CFLAGS)
else
st =
pkg_LTLIBRARIES = libmsn.la
libmsn_la_SOURCES = $(MSNSOURCES)
libmsn_la_LIBADD = $(GLIB_LIBS)
endif
AM_CPPFLAGS = \
-I$(top_srcdir)/libpurple \
-I$(top_builddir)/libpurple \
$(GLIB_CFLAGS) \
$(DEBUG_CFLAGS) \
$(FARSIGHT_CFLAGS)
$(GSTREAMER_CFLAGS) \
$(LIBXML_CFLAGS)
|