view console/Makefile.am @ 15740:73219517f583

gntgaim idle reporting, this fixes idle return
author Richard Nelson <wabz@pidgin.im>
date Tue, 27 Feb 2007 04:11:46 +0000
parents 1e4f4e000c76
children
line wrap: on
line source

if ENABLE_GNT

EXTRA_DIST = \
		getopt.c \
		getopt.h \
		getopt1.c

SUBDIRS = libgnt plugins

bin_PROGRAMS = gaim-text

gaim_text_SOURCES = \
	gntaccount.c \
	gntblist.c \
	gntconn.c \
	gntconv.c \
	gntdebug.c \
	gntft.c \
	gntgaim.c \
	gntidle.c \
	gntnotify.c \
	gntplugin.c \
	gntpounce.c \
	gntprefs.c \
	gntrequest.c \
	gntstatus.c \
	gntui.c

gaim_text_headers = \
	gntaccount.h \
	gntblist.h \
	gntconn.h \
	gntconv.h \
	gntdebug.h \
	gntft.h \
	gntgaim.h \
	gntidle.h \
	gntnotify.h \
	gntplugin.h \
	gntpounce.h \
	gntprefs.h \
	gntrequest.h \
	gntstatus.h \
	gntui.h

gaim_textincludedir=$(includedir)/gaim/gnt
gaim_textinclude_HEADERS = \
	$(gaim_text_headers)

gaim_text_DEPENDENCIES = @LIBOBJS@
gaim_text_LDFLAGS = -export-dynamic
gaim_text_LDADD = \
	@LIBOBJS@ \
	$(DBUS_LIBS) \
	$(INTLLIBS) \
	$(GLIB_LIBS) \
	$(LIBXML_LIBS) \
	$(GNT_LIBS) \
	./libgnt/libgnt.la \
	$(top_builddir)/libpurple/libpurple.la

AM_CPPFLAGS = \
	-DSTANDALONE \
	-DBR_PTHREADS=0 \
	-DDATADIR=\"$(datadir)\" \
	-DLIBDIR=\"$(libdir)/gaim/\" \
	-DLOCALEDIR=\"$(datadir)/locale\" \
	-DSYSCONFDIR=\"$(sysconfdir)\" \
	-I$(top_srcdir)/libpurple/ \
	-I$(top_srcdir) \
	-I$(srcdir)/libgnt/ \
	$(DEBUG_CFLAGS) \
	$(GLIB_CFLAGS) \
	$(DBUS_CFLAGS) \
	$(LIBXML_CFLAGS) \
	$(GNT_CFLAGS)
endif