comparison src/protocols/irc/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 1a1d68e12a86
comparison
equal deleted inserted replaced
2085:7ebb4322f89b 2086:424a40f12a6c
1 pkgdir = $(libdir)/gaim
2
3 CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS)
4
5 if STATIC_IRC
6
7 st = -DSTATIC
8 pkg_LTLIBRARIES =
9 noinst_LIBRARIES = libirc.a
10
11 libirc_a_SOURCES = irc.c
12
13 else
14
15 st =
16 pkg_LTLIBRARIES = libirc.la
17 noinst_LIBRARIES =
18
19 libirc_la_SOURCES = irc.c
20
21 endif