view src/protocols/oscar/Makefile.am @ 5132:494b6b6a6ffa

[gaim-migrate @ 5495] I changed some zephyr stuff. I think it's funny. I made the get info box not show "Alias: (null)" for people without aliases, which I guess will fix a crash bug with zephyr on solaris, maybe. And I also gettexticised some strings. I thought I'd mention this in the change log because it's funny (that zephyr still exists). And to anyone who's wondering, NC State does have a zephyr realm set up, but not many people use it. I also mentioned the ICQ authorization thing. I figure some peeps might care. I bet the Care Bears care. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 14 Apr 2003 19:42:29 +0000
parents 9810ce8e7a96
children fcc28f5dd0c8
line wrap: on
line source

EXTRA_DIST = README CHANGES COPYING BUGS AUTHORS

pkgdir = $(libdir)/gaim

OSCARSOURCES = \
	admin.c        \
	adverts.c      \
	aim.h          \
	aim_cbtypes.h  \
	aim_internal.h \
	auth.c         \
	bos.c          \
	bstream.c      \
	buddylist.c    \
	chat.c         \
	chatnav.c      \
	conn.c         \
	email.c        \
	faimconfig.h   \
	ft.c           \
	icon.c         \
	icq.c          \
	im.c           \
	info.c         \
	invite.c       \
	md5.h          \
	misc.c         \
	msgcookie.c    \
	newsearch.c    \
	popups.c       \
	rxhandlers.c   \
	rxqueue.c      \
	search.c       \
	service.c      \
	snac.c         \
	ssi.c          \
	stats.c        \
	tlv.c          \
	translate.c    \
	txqueue.c      \
	util.c         \
	oscar.c

AM_CFLAGS = $(st)

liboscar_la_LDFLAGS = -module -avoid-version

if STATIC_OSCAR

st = -DSTATIC
noinst_LIBRARIES   = liboscar.a
liboscar_a_SOURCES = $(OSCARSOURCES)
liboscar_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES     = liboscar.la
liboscar_la_SOURCES = $(OSCARSOURCES)

endif

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