view plugins/crazychat/Makefile.am @ 11249:b4b1be482b4e

[gaim-migrate @ 13418] sf patch #1235519, from Sadrul Habib Chowdhury This is a pretty big patch that makes Gaim correctly save and restore the current status (away/available, away message, available message, invisible, etc). The GaimGtkStatusBoxWidget thing I think defaults to "Available" every time its created, which overrides the setting that was saved to the XML file. So that still needs to be fixed before this will really work. Anyway, mad props to Sadrul for putting up with my requests on this patch committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 13 Aug 2005 05:22:09 +0000
parents ed017b9c532d
children 80ee726755d4
line wrap: on
line source

plugindir = $(libdir)/gaim

if ENABLE_DEBUG
DEBUG_CPPFLAGS = -g -pg
# DEBUG_CPPFLAGS = -D_DEBUG_ -g -pg 
DEBUG_LDFLAGS = -pg
else
DEBUG_CPPFLAGS = -O2
DEBUG_LDFLAGS =
endif

plugin_LTLIBRARIES = crazychat.la
if DISABLE_QT
crazychat_la_LDFLAGS = -module -avoid-version $(DEBUG_LDFLAGS)
crazychat_la_SOURCES = cc_gaim_plugin.c cc_gtk_gl.c cc_gtk_gl.h \
	cc_interface.h crazychat.c crazychat.h util.h \
	cc_network.c cc_network.h filter.c filter.h\
	cc_output.c face.c face.h doggy.c doggy.h glm.h glm.c sharky.h sharky.c models.h models.c

QT_CPPFLAGS = -D_DISABLE_QT_
else
crazychat_la_LDFLAGS = -module -avoid-version $(DEBUG_LDFLAGS) \
	-XCClinker -framework -XCClinker Carbon -XCClinker -framework \
	-XCClinker QuickTime

crazychat_la_SOURCES = cc_features.c cc_gaim_plugin.c cc_gtk_gl.c cc_gtk_gl.h \
	cc_interface.h crazychat.c crazychat.h util.h \
	cc_network.c cc_network.h filter.c filter.h\
	cc_output.c face.c face.h doggy.c doggy.h glm.h glm.c sharky.h sharky.c models.h models.c\
	QTUtilities.c Utilities.c camdata.c camproc.c Utilities.h

QT_CPPFLAGS =
endif

crazychat_la_LIBADD = $(PTHREAD_LIB) $(GTKGLEXT_LIBS)

AM_CFLAGS = $(GTK_CFLAGS) \
	$(GTKGLEXT_CFLAGS) \
	-I$(top_srcdir)/include

AM_CPPFLAGS = -DGAIM_PLUGINS \
	$(DEBUG_CPPFLAGS) \
	$(QT_CPPFLAGS)