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