Mercurial > pidgin
annotate finch/Makefile.am @ 16464:b2044e10915a
merge of 'ca40214f7a10f0e15d7bd32bed84b177889ca02d'
and 'dfafb91b749752416047f800169f9c839c909733'
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Fri, 27 Apr 2007 00:28:21 +0000 |
parents | c6e563dfaa7a |
children | 5b2b0fbace45 |
rev | line source |
---|---|
15817 | 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 \ | |
15822 | 19 finch.c \ |
15817 | 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 \ | |
15822 | 36 finch.h \ |
15817 | 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 | |
15884
c6e563dfaa7a
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <stu@nosnilmot.com>
parents:
15822
diff
changeset
|
46 finchincludedir=$(includedir)/finch |
15817 | 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)\" \ | |
15884
c6e563dfaa7a
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <stu@nosnilmot.com>
parents:
15822
diff
changeset
|
66 -DLIBDIR=\"$(libdir)/finch/\" \ |
15817 | 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 |