view src/protocols/trepia/Makefile.am @ 6982:083d1e4a9c78

[gaim-migrate @ 7538] This is Mr. Holland's Opus. And by Mr. Holland I mean Robot101. He rewrote the coreish IM image support so that the binary data gets ripped out in the prpl and put in an imgstore instead of just being passed in the same huge as char string as the actual message. This is good because it's prpl agnostic, or something. It also means we don't have a silly length of "-1" with pretty much every send or receive IM function. It should be crash free, bug free, and memleak free, but additional testing is always a good thing. If you like good stuff then you'll love this patch. But don't take my word for it--ba dun dunt! committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 27 Sep 2003 19:17:21 +0000
parents 8f94cce8faa5
children bb0160033e50
line wrap: on
line source

pkgdir = $(libdir)/gaim

TREPIASOURCES = \
	md5.h \
	profile.c \
	profile.h \
	trepia.c

AM_CFLAGS = $(st)

libtrepia_la_LDFLAGS = -module -avoid-version

if STATIC_TREPIA

st = -DSTATIC
noinst_LIBRARIES = libtrepia.a
libtrepia_a_SOURCES = $(TREPIASOURCES)
libtrepia_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES   = libtrepia.la
libtrepia_la_SOURCES = $(TREPIASOURCES)

endif

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