view src/protocols/napster/Makefile.am @ 8488:c6dd51ece325

[gaim-migrate @ 9223] I'm astounded that this happened. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 23 Mar 2004 03:51:35 +0000
parents 538f4d0faf1d
children 24f84b7ffe8e
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)