view src/protocols/toc/Makefile.am @ 6252:7e5cc7c7cf5d

[gaim-migrate @ 6748] Danilo Segan updated the sr.po and added sr@Latn.po, which is a name format i've never seen before, so someone who doesn't have to compile with --disable-nls please check that this compiles committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 21 Jul 2003 18:40:54 +0000
parents fcc28f5dd0c8
children 2e23ccbccdec
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 = -DSTATIC
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 \
	$(DEBUG_CFLAGS)