view src/protocols/silc/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 3547fd2af609
children 2cc05a9e944d
line wrap: on
line source

EXTRA_DIST = README TODO Makefile.mingw

pkgdir = $(libdir)/gaim

SILCSOURCES = silc.c silcgaim.h buddy.c chat.c ft.c ops.c pk.c util.c

AM_CFLAGS = $(st)

libsilcgaim_la_LDFLAGS = -module -avoid-version

if STATIC_SILC

st = -DGAIM_STATIC_PRPL $(SILC_CFLAGS)
noinst_LIBRARIES = libsilcgaim.a
pkg_LTLIBRARIES =

libsilcgaim_a_SOURCES = $(SILCSOURCES)
libsilcgaim_a_CFLAGS  = $(AM_CFLAGS)
libsilcgaim_a_LIBADD  = $(SILC_LIBS)

else

st = $(SILC_CFLAGS)
pkg_LTLIBRARIES = libsilcgaim.la
noinst_LIBRARIES =

libsilcgaim_la_SOURCES = $(SILCSOURCES)
libsilcgaim_la_LIBADD  = $(SILC_LIBS)

endif

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