Increment version number
[pidgin-git.git] / finch / Makefile.am
blob85502d30159e0915315673c4d20e5842fc45357b
1 EXTRA_DIST = \
2                 getopt.c \
3                 getopt.h \
4                 getopt1.c \
5                 finch.pc.in
7 pkgconfigdir = $(libdir)/pkgconfig
8 pkgconfig_DATA = finch.pc
10 SUBDIRS = libgnt plugins
12 if ENABLE_GNT
14 bin_PROGRAMS = finch
16 endif
18 finch_SOURCES = \
19         gntaccount.c \
20         gntblist.c \
21         gntcertmgr.c \
22         gntconn.c \
23         gntconv.c \
24         gntdebug.c \
25         gntft.c \
26         finch.c \
27         gntidle.c \
28         gntlog.c \
29         gntmedia.c \
30         gntnotify.c \
31         gntplugin.c \
32         gntpounce.c \
33         gntprefs.c \
34         gntrequest.c \
35         gntroomlist.c \
36         gntsound.c \
37         gntstatus.c \
38         gntui.c
40 finch_headers = \
41         gntaccount.h \
42         gntblist.h \
43         gntcertmgr.h \
44         gntconn.h \
45         gntconv.h \
46         gntdebug.h \
47         gntft.h \
48         finch.h \
49         gntidle.h \
50         gntlog.h \
51         gntmedia.h \
52         gntnotify.h \
53         gntplugin.h \
54         gntpounce.h \
55         gntprefs.h \
56         gntrequest.h \
57         gntroomlist.h \
58         gntsound.h \
59         gntstatus.h \
60         gntui.h
62 finchincludedir=$(includedir)/finch
63 finchinclude_HEADERS = \
64         $(finch_headers)
66 finch_DEPENDENCIES = @LIBOBJS@
67 finch_LDFLAGS = -export-dynamic
68 finch_LDADD = \
69         @LIBOBJS@ \
70         $(DBUS_LIBS) \
71         $(INTLLIBS) \
72         $(GLIB_LIBS) \
73         $(LIBXML_LIBS) \
74         $(GNT_LIBS) \
75         $(GSTREAMER_LIBS) \
76         ./libgnt/libgnt.la \
77         $(top_builddir)/libpurple/libpurple.la
79 AM_CPPFLAGS = \
80         -DSTANDALONE \
81         -DDATADIR=\"$(datadir)\" \
82         -DLIBDIR=\"$(libdir)/finch/\" \
83         -DLOCALEDIR=\"$(datadir)/locale\" \
84         -DSYSCONFDIR=\"$(sysconfdir)\" \
85         -I$(top_srcdir)/libpurple/ \
86         -I$(top_srcdir) \
87         -I$(srcdir)/libgnt/ \
88         $(DEBUG_CFLAGS) \
89         $(GLIB_CFLAGS) \
90         $(DBUS_CFLAGS) \
91         $(LIBXML_CFLAGS) \
92         $(GSTREAMER_CFLAGS) \
93         $(GNT_CFLAGS)