comparison finch/Makefile.am @ 15818:0e3a8505ebbe

renamed gaim-text to finch
author Sean Egan <seanegan@gmail.com>
date Sun, 18 Mar 2007 19:38:15 +0000
parents
children 32c366eeeb99
comparison
equal deleted inserted replaced
15817:317e7613e581 15818:0e3a8505ebbe
1 if ENABLE_GNT
2
3 EXTRA_DIST = \
4 getopt.c \
5 getopt.h \
6 getopt1.c
7
8 SUBDIRS = libgnt plugins
9
10 bin_PROGRAMS = finch
11
12 finch_SOURCES = \
13 gntaccount.c \
14 gntblist.c \
15 gntconn.c \
16 gntconv.c \
17 gntdebug.c \
18 gntft.c \
19 gntgaim.c \
20 gntidle.c \
21 gntnotify.c \
22 gntplugin.c \
23 gntpounce.c \
24 gntprefs.c \
25 gntrequest.c \
26 gntstatus.c \
27 gntui.c
28
29 finch_headers = \
30 gntaccount.h \
31 gntblist.h \
32 gntconn.h \
33 gntconv.h \
34 gntdebug.h \
35 gntft.h \
36 gntgaim.h \
37 gntidle.h \
38 gntnotify.h \
39 gntplugin.h \
40 gntpounce.h \
41 gntprefs.h \
42 gntrequest.h \
43 gntstatus.h \
44 gntui.h
45
46 finchincludedir=$(includedir)/gaim/gnt
47 finchinclude_HEADERS = \
48 $(finch_headers)
49
50 finch_DEPENDENCIES = @LIBOBJS@
51 finch_LDFLAGS = -export-dynamic
52 finch_LDADD = \
53 @LIBOBJS@ \
54 $(DBUS_LIBS) \
55 $(INTLLIBS) \
56 $(GLIB_LIBS) \
57 $(LIBXML_LIBS) \
58 $(GNT_LIBS) \
59 ./libgnt/libgnt.la \
60 $(top_builddir)/libpurple/libpurple.la
61
62 AM_CPPFLAGS = \
63 -DSTANDALONE \
64 -DBR_PTHREADS=0 \
65 -DDATADIR=\"$(datadir)\" \
66 -DLIBDIR=\"$(libdir)/gaim/\" \
67 -DLOCALEDIR=\"$(datadir)/locale\" \
68 -DSYSCONFDIR=\"$(sysconfdir)\" \
69 -I$(top_srcdir)/libpurple/ \
70 -I$(top_srcdir) \
71 -I$(srcdir)/libgnt/ \
72 $(DEBUG_CFLAGS) \
73 $(GLIB_CFLAGS) \
74 $(DBUS_CFLAGS) \
75 $(LIBXML_CFLAGS) \
76 $(GNT_CFLAGS)
77 endif