-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
60 lines (47 loc) · 1.08 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
EXTRA_DIST = \
Makefile.mingw
pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION)
YAHOOSOURCES = \
libymsg.c \
libymsg.h \
util.c \
yahoochat.h \
yahoochat.c \
yahoo_aliases.c \
yahoo_aliases.h \
yahoo_doodle.h \
yahoo_doodle.c \
yahoo_filexfer.h \
yahoo_filexfer.c \
yahoo_friend.h \
yahoo_friend.c \
yahoo_packet.h \
yahoo_packet.c \
yahoo_picture.c \
yahoo_picture.h \
yahoo_profile.c \
ycht.c \
ycht.h
AM_CFLAGS = $(st)
libyahoo_la_LDFLAGS = -module -avoid-version
libyahoojp_la_LDFLAGS = -module -avoid-version
if STATIC_YAHOO
st = -DPURPLE_STATIC_PRPL
noinst_LTLIBRARIES = libymsg.la
libymsg_la_SOURCES = $(YAHOOSOURCES) libyahoo.c libyahoojp.c
libymsg_la_CFLAGS = $(AM_CFLAGS)
else
st =
pkg_LTLIBRARIES = libymsg.la libyahoo.la libyahoojp.la
libymsg_la_SOURCES = $(YAHOOSOURCES)
libymsg_la_LIBADD = $(GLIB_LIBS)
libyahoo_la_SOURCES = libyahoo.c
libyahoo_la_LIBADD = libymsg.la
libyahoojp_la_SOURCES = libyahoojp.c
libyahoojp_la_LIBADD = libymsg.la
endif
AM_CPPFLAGS = \
-I$(top_srcdir)/libpurple \
-I$(top_builddir)/libpurple \
$(GLIB_CFLAGS) \
$(DEBUG_CFLAGS)