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 | pkgdir = $(libdir)/gaim |
| 2 | ||
| 3 | CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) | |
| 4 | ||
| 5 | if STATIC_TOC | |
| 6 | ||
| 7 | st = -DSTATIC | |
| 8 | pkg_LTLIBRARIES = | |
| 9 | noinst_LIBRARIES = libtoc.a | |
| 10 | ||
| 11 | libtoc_a_SOURCES = toc.c | |
| 12 | ||
| 13 | else | |
| 14 | ||
| 15 | st = | |
| 16 | pkg_LTLIBRARIES = libtoc.la | |
| 17 | noinst_LIBRARIES = | |
| 18 | ||
| 19 | libtoc_la_SOURCES = toc.c | |
| 20 | ||
| 21 | endif |