view src/protocols/gg/Makefile.am @ 3357:e2b682769dfd

[gaim-migrate @ 3376] This should cause some useful errors to be generated when the necessary GTK+ or GLIB development files are not installed, instead of just missing macro errors. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 13 Jul 2002 07:34:29 +0000
parents 44140dae2865
children 5df423e0bca8
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

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