view src/protocols/yahoo/Makefile.am @ 4825:682e91a2fcd3

[gaim-migrate @ 5150] Faceprint pointed out that memleaks were bad. I'm still not convinced, so later I'm going to remove all the calls to "free" and "g_free" and see what happens. Hands on the aaltar for a charming spell (Be sincere with persuasion) Go ask your Goddess if you've served her well (She'll be climbing higher now) committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 18 Mar 2003 17:51:50 +0000
parents 59751fe608c5
children fcc28f5dd0c8
line wrap: on
line source

pkgdir = $(libdir)/gaim

YAHOOSOURCES = \
	crypt.c \
	md5.h \
	yahoo.c

AM_CFLAGS = $(st)

libyahoo_la_LDFLAGS = -module -avoid-version

if STATIC_YAHOO

st = -DSTATIC
noinst_LIBRARIES   = libyahoo.a
libyahoo_a_SOURCES = $(YAHOOSOURCES)
libyahoo_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES     = libyahoo.la
libyahoo_la_SOURCES = $(YAHOOSOURCES)

endif

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