view src/protocols/napster/Makefile.am @ 6250:1c8caacac1de

[gaim-migrate @ 6746] Fixes bug #725868 - caused Win (ME, 98) Gaim to crash oncalls to isspace and ispunct committer: Tailor Script <tailor@pidgin.im>
author Herman Bloggs <hermanator12002@yahoo.com>
date Sun, 20 Jul 2003 23:47:00 +0000
parents 59751fe608c5
children 2e23ccbccdec
line wrap: on
line source

pkgdir = $(libdir)/gaim

NAPSTERSOURCES = napster.c

AM_CFLAGS = $(st)

libnapster_la_LDFLAGS = -module -avoid-version

if STATIC_NAPSTER

st = -DSTATIC
noinst_LIBRARIES     = libnapster.a
libnapster_a_SOURCES = $(NAPSTERSOURCES)
libnapster_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES       = libnapster.la
libnapster_la_SOURCES = $(NAPSTERSOURCES)

endif

AM_CPPFLAGS = \
	-I$(top_srcdir)/src \
	$(DEBUG_CFLAGS)