view src/protocols/gg/Makefile.am @ 3411:5df423e0bca8

[gaim-migrate @ 3430] This hopefully adds automake 1.6 support to gaim. I have not tested it, though it came from a guy who uses 1.6, so I'd hope it works. It doesn't break 1.4. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 18 Aug 2002 19:32:05 +0000
parents 44140dae2865
children a5c49e9c6a53
line wrap: on
line source

EXTRA_DIST = protocol.txt

pkgdir = $(libdir)/gaim

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

if STATIC_GG

st = -DSTATIC
pkg_LTLIBRARIES =
noinst_LIBRARIES = libgg.a

libgg_a_SOURCES = libgg.c \
		  libgg.h \
		  common.c \
		  iconv_string.c \
		  iconv_string.h \
		  gg.c

libgg_a_CFLAGS = $(AM_CFLAGS)

else

st =
pkg_LTLIBRARIES = libgg.la
noinst_LIBRARIES =

libgg_la_SOURCES = libgg.c \
		   libgg.h \
		   common.c \
		   iconv_string.c \
		   iconv_string.h \
		   gg.c

endif