Minor changelog updates
[pidgin-git.git] / finch / Makefile.am
blobbebf9459034346bb4d3f560754d67d747b2c0c31
1 EXTRA_DIST = \
2                 getopt.c \
3                 getopt.h \
4                 getopt1.c
6 SUBDIRS = libgnt plugins
8 if ENABLE_GNT
10 bin_PROGRAMS = finch
12 endif
14 finch_SOURCES = \
15         gntaccount.c \
16         gntblist.c \
17         gntcertmgr.c \
18         gntconn.c \
19         gntconv.c \
20         gntdebug.c \
21         gntft.c \
22         finch.c \
23         gntidle.c \
24         gntnotify.c \
25         gntplugin.c \
26         gntpounce.c \
27         gntprefs.c \
28         gntrequest.c \
29         gntsound.c \
30         gntstatus.c \
31         gntui.c
33 finch_headers = \
34         gntaccount.h \
35         gntblist.h \
36         gntcertmgr.h \
37         gntconn.h \
38         gntconv.h \
39         gntdebug.h \
40         gntft.h \
41         finch.h \
42         gntidle.h \
43         gntnotify.h \
44         gntplugin.h \
45         gntpounce.h \
46         gntprefs.h \
47         gntrequest.h \
48         gntsound.h \
49         gntstatus.h \
50         gntui.h
52 finchincludedir=$(includedir)/finch
53 finchinclude_HEADERS = \
54         $(finch_headers)
56 finch_DEPENDENCIES = @LIBOBJS@
57 finch_LDFLAGS = -export-dynamic
58 finch_LDADD = \
59         @LIBOBJS@ \
60         $(DBUS_LIBS) \
61         $(INTLLIBS) \
62         $(GLIB_LIBS) \
63         $(LIBXML_LIBS) \
64         $(GNT_LIBS) \
65         $(GSTREAMER_LIBS) \
66         ./libgnt/libgnt.la \
67         $(top_builddir)/libpurple/libpurple.la
69 AM_CPPFLAGS = \
70         -DSTANDALONE \
71         -DBR_PTHREADS=0 \
72         -DDATADIR=\"$(datadir)\" \
73         -DLIBDIR=\"$(libdir)/finch/\" \
74         -DLOCALEDIR=\"$(datadir)/locale\" \
75         -DSYSCONFDIR=\"$(sysconfdir)\" \
76         -I$(top_srcdir)/libpurple/ \
77         -I$(top_srcdir) \
78         -I$(srcdir)/libgnt/ \
79         $(DEBUG_CFLAGS) \
80         $(GLIB_CFLAGS) \
81         $(DBUS_CFLAGS) \
82         $(LIBXML_CFLAGS) \
83         $(GSTREAMER_CFLAGS) \
84         $(GNT_CFLAGS)