view src/protocols/yahoo/Makefile.am @ 8216:dcace041cfb8

[gaim-migrate @ 8939] It's an uncommon practice to use strlen("SOMETHING") && strncmp(...) as the value for a length parameter to a strncmp. I'm therefore assuming it's wrong, and fixing it. I'm also going to get some breakfast. I was thinking Lucky Charms, but we're about out of that, so I may go for bacon instead. Or I could go take my shower and get some donuts. It's a tough decision. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 06 Feb 2004 22:01:05 +0000
parents 6b1ecf40f3ba
children f1ca7e06e8de
line wrap: on
line source

EXTRA_DIST = \
		Makefile.mingw

pkgdir = $(libdir)/gaim

YAHOOSOURCES = \
	crypt.c \
	yahoo.h \
	yahoochat.h \
	yahoo.c \
	yahoochat.c \
	util.c \
	yahoo_filexfer.h \
	yahoo_filexfer.c

AM_CFLAGS = $(st)

libyahoo_la_LDFLAGS = -module -avoid-version

if STATIC_YAHOO

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