2086
|
1 EXTRA_DIST = AUTHORS
|
|
2
|
|
3 pkgdir = $(libdir)/gaim
|
|
4
|
|
5 CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS)
|
|
6
|
|
7 if STATIC_YAHOO
|
|
8
|
|
9 st = -DSTATIC
|
|
10 pkg_LTLIBRARIES =
|
|
11 noinst_LIBRARIES = libyahoo.a
|
|
12
|
|
13 libyahoo_a_SOURCES = \
|
|
14 buddy.c conn.c internal.h login.c misc.c outgoing.c rxhandlers.c yay.c yay.h
|
|
15
|
|
16 else
|
|
17
|
|
18 st =
|
|
19 pkg_LTLIBRARIES = libyahoo.la
|
|
20 noinst_LIBRARIES =
|
|
21
|
|
22 libyahoo_la_SOURCES = \
|
|
23 buddy.c conn.c internal.h login.c misc.c outgoing.c rxhandlers.c yay.c yay.h
|
|
24
|
|
25 endif
|