comparison src/protocols/yahoo/Makefile.am @ 2086:424a40f12a6c

[gaim-migrate @ 2096] moving protocols from plugins/ to src/protocols. making it so that you can select which protocols are compiled statically. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 31 Jul 2001 01:00:39 +0000
parents
children 5486d558ecee
comparison
equal deleted inserted replaced
2085:7ebb4322f89b 2086:424a40f12a6c
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