14192
|
1 EXTRA_DIST = \
|
|
2 Makefile.mingw
|
|
3
|
|
4 pkgdir = $(libdir)/gaim
|
|
5
|
|
6 YAHOOSOURCES = \
|
|
7 util.c \
|
|
8 yahoo.c \
|
|
9 yahoo.h \
|
|
10 yahoochat.h \
|
|
11 yahoochat.c \
|
|
12 yahoo_auth.c \
|
|
13 yahoo_auth.h \
|
|
14 yahoo_crypt.h \
|
|
15 yahoo_crypt.c \
|
|
16 yahoo_doodle.h \
|
|
17 yahoo_doodle.c \
|
|
18 yahoo_filexfer.h \
|
|
19 yahoo_filexfer.c \
|
|
20 yahoo_friend.h \
|
|
21 yahoo_friend.c \
|
|
22 yahoo_packet.h \
|
|
23 yahoo_packet.c \
|
|
24 yahoo_picture.c \
|
|
25 yahoo_picture.h \
|
|
26 yahoo_profile.c \
|
|
27 ycht.c \
|
|
28 ycht.h
|
|
29
|
|
30 AM_CFLAGS = $(st)
|
|
31
|
|
32 libyahoo_la_LDFLAGS = -module -avoid-version $(GLIB_LIBS)
|
|
33
|
|
34 if STATIC_YAHOO
|
|
35
|
|
36 st = -DGAIM_STATIC_PRPL
|
|
37 noinst_LIBRARIES = libyahoo.a
|
|
38 libyahoo_a_SOURCES = $(YAHOOSOURCES)
|
|
39 libyahoo_a_CFLAGS = $(AM_CFLAGS)
|
|
40
|
|
41 else
|
|
42
|
|
43 st =
|
|
44 pkg_LTLIBRARIES = libyahoo.la
|
|
45 libyahoo_la_SOURCES = $(YAHOOSOURCES)
|
|
46
|
|
47 endif
|
|
48
|
|
49 AM_CPPFLAGS = \
|
|
50 -I$(top_srcdir)/libgaim \
|
|
51 $(GLIB_CFLAGS) \
|
|
52 $(DEBUG_CFLAGS)
|