view src/protocols/trepia/Makefile.am @ 10044:86a6d78b070b

[gaim-migrate @ 11003] this is the msn buddy list sync code from the 1.0.0 tree, also from shx. in this patch, i changed one instance of "b" to "buddy" to make it compile. this introduces code to ask the user about discrepances between the local and server lists on msn. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 19 Sep 2004 03:02:28 +0000
parents 6b1ecf40f3ba
children
line wrap: on
line source

EXTRA_DIST = \
		Makefile.mingw

pkgdir = $(libdir)/gaim

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

AM_CFLAGS = $(st)

libtrepia_la_LDFLAGS = -module -avoid-version

if STATIC_TREPIA

st = -DGAIM_STATIC_PRPL
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)