view src/protocols/napster/Makefile.am @ 8088:a86784e3b98c

[gaim-migrate @ 8787] ints and chars, living in harmony committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Tue, 13 Jan 2004 01:00:24 +0000
parents 6b1ecf40f3ba
children 538f4d0faf1d
line wrap: on
line source

pkgdir = $(libdir)/gaim

NAPSTERSOURCES = napster.c

AM_CFLAGS = $(st)

libnapster_la_LDFLAGS = -module -avoid-version

if STATIC_NAPSTER

st = -DGAIM_STATIC_PRPL
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 \
	$(GLIB_CFLAGS) \
	$(DEBUG_CFLAGS)