view src/protocols/msn/Makefile.am @ 3572:bdd0bebd2d04

[gaim-migrate @ 3670] Phase II. No longer do you have to worry about protocol plugins. When Gaim probes plugins on load, it will detect protocol plugins and add them to the list of available protocols. When you try to log an account on with one of them, Gaim will automatically load the plugin--when no more accounts need the protocol--Gaim will automatically unload it. Protocol plugins are no longer available in the plugins ui, and no protocols are compiled statically by default. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 30 Sep 2002 01:05:18 +0000
parents 5df423e0bca8
children 59751fe608c5
line wrap: on
line source

EXTRA_DIST = PROTOCOL md5.h

pkgdir = $(libdir)/gaim

CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS)
libmsn_la_LDFLAGS = -module -avoid-version

if STATIC_MSN

st = -DSTATIC
pkg_LTLIBRARIES =
noinst_LIBRARIES = libmsn.a

libmsn_a_SOURCES = msn.c

libmsn_a_CFLAGS = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES = libmsn.la
noinst_LIBRARIES =

libmsn_la_SOURCES = msn.c

endif