view src/protocols/napster/Makefile.am @ 10216:09876d57c520

[gaim-migrate @ 11343] jabber can now set away messages, but can't come back when another account is logged in...someone feel free to clue me in as to what I did wrong committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sat, 20 Nov 2004 05:12:59 +0000
parents 24f84b7ffe8e
children 2cc05a9e944d
line wrap: on
line source

EXTRA_DIST = \
		Makefile.mingw

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)