-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
102 lines (92 loc) · 1.36 KB
/
Makefile.am
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
102
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\
directconn.c \
directconn.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\
p2p.c \
p2p.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 \
slpmsg_part.c \
slpmsg_part.h \
soap.c \
soap.h \
state.c \
state.h \
sbconn.c \
sbconn.h \
switchboard.c \
switchboard.h \
table.c \
table.h \
tlv.c \
tlv.h \
transaction.c \
transaction.h \
user.c \
user.h \
userlist.c \
userlist.h \
xfer.c \
xfer.h \
msnutils.c \
msnutils.h
AM_CFLAGS = $(st)
libmsn_la_LDFLAGS = -module -avoid-version
if STATIC_MSN
st = -DPURPLE_STATIC_PRPL
noinst_LTLIBRARIES = libmsn.la
libmsn_la_SOURCES = $(MSNSOURCES)
libmsn_la_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)