view src/protocols/toc/Makefile.am @ 12665:cdbef02c91e9

[gaim-migrate @ 15008] SF Patch #1390129 from Sadrul "I have never used this plugin. But I have been noticing a warning about this iconaway plugin in the debug-window for a long time. This patch at least gets rid of that. This patch may also make it work as was intended. But I am not sure." I don't use this plugin either. This looks correct to me. Someone that really uses it should verify. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Wed, 28 Dec 2005 09:01:41 +0000
parents 6b1ecf40f3ba
children
line wrap: on
line source

EXTRA_DIST = \
		PROTOCOL \
		Makefile.mingw

pkgdir = $(libdir)/gaim

TOCSOURCES = toc.c

AM_CFLAGS = $(st)

libtoc_la_LDFLAGS = -module -avoid-version

if STATIC_TOC

st = -DGAIM_STATIC_PRPL
noinst_LIBRARIES = libtoc.a
libtoc_a_SOURCES = $(TOCSOURCES)
libtoc_a_CFLAGS  = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES   = libtoc.la
libtoc_la_SOURCES = $(TOCSOURCES)

endif

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