Mercurial > pidgin.yaz
annotate finch/Makefile.am @ 20628:b8962a8c5daa
merge of '33aead6e626883ef6ad44b79099f01d2da042d9a'
and 'f76b9e1feb23d6a4308ca0c80f5f85765d985aff'
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 23 Sep 2007 22:08:46 +0000 |
parents | e1751162ab1f |
children | 8413368adb5a |
rev | line source |
---|---|
15818 | 1 EXTRA_DIST = \ |
2 getopt.c \ | |
3 getopt.h \ | |
4 getopt1.c | |
5 | |
6 SUBDIRS = libgnt plugins | |
7 | |
16488
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
8 if ENABLE_GNT |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
9 |
15818 | 10 bin_PROGRAMS = finch |
11 | |
16488
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
12 endif |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15885
diff
changeset
|
13 |
15818 | 14 finch_SOURCES = \ |
15 gntaccount.c \ | |
16 gntblist.c \ | |
19516
e1751162ab1f
Add certificate UI in finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19169
diff
changeset
|
17 gntcertmgr.c \ |
15818 | 18 gntconn.c \ |
19 gntconv.c \ | |
20 gntdebug.c \ | |
21 gntft.c \ | |
15823 | 22 finch.c \ |
15818 | 23 gntidle.c \ |
24 gntnotify.c \ | |
25 gntplugin.c \ | |
26 gntpounce.c \ | |
27 gntprefs.c \ | |
28 gntrequest.c \ | |
19100 | 29 gntsound.c \ |
15818 | 30 gntstatus.c \ |
31 gntui.c | |
32 | |
33 finch_headers = \ | |
34 gntaccount.h \ | |
35 gntblist.h \ | |
19516
e1751162ab1f
Add certificate UI in finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19169
diff
changeset
|
36 gntcertmgr.h \ |
15818 | 37 gntconn.h \ |
38 gntconv.h \ | |
39 gntdebug.h \ | |
40 gntft.h \ | |
15823 | 41 finch.h \ |
15818 | 42 gntidle.h \ |
43 gntnotify.h \ | |
44 gntplugin.h \ | |
45 gntpounce.h \ | |
46 gntprefs.h \ | |
47 gntrequest.h \ | |
19100 | 48 gntsound.h \ |
15818 | 49 gntstatus.h \ |
50 gntui.h | |
51 | |
15885
c6e563dfaa7a
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <stu@nosnilmot.com>
parents:
15823
diff
changeset
|
52 finchincludedir=$(includedir)/finch |
15818 | 53 finchinclude_HEADERS = \ |
54 $(finch_headers) | |
55 | |
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) \ | |
19100 | 65 $(GSTREAMER_LIBS) \ |
15818 | 66 ./libgnt/libgnt.la \ |
67 $(top_builddir)/libpurple/libpurple.la | |
68 | |
69 AM_CPPFLAGS = \ | |
70 -DSTANDALONE \ | |
71 -DBR_PTHREADS=0 \ | |
72 -DDATADIR=\"$(datadir)\" \ | |
15885
c6e563dfaa7a
More s/gaim/pidgin/ and s/gaim/purple/ and make the RPM spec file work a bit
Stu Tomlinson <stu@nosnilmot.com>
parents:
15823
diff
changeset
|
73 -DLIBDIR=\"$(libdir)/finch/\" \ |
15818 | 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) \ | |
19100 | 83 $(GSTREAMER_CFLAGS) \ |
15818 | 84 $(GNT_CFLAGS) |