Tue, 31 Jul 2001 01:00:39 +0000
[gaim-migrate @ 2096]
moving protocols from plugins/ to src/protocols. making it so that you can select which protocols are compiled statically.
| 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 |