Mercurial > pidgin
annotate finch/Makefile.am @ 18823:e1062ac14080
Correct an inaccurate comment.
author | Will Thompson <will.thompson@collabora.co.uk> |
---|---|
date | Mon, 06 Aug 2007 22:07:48 +0000 |
parents | 38ff7582c569 |
children | 069849fb77c0 |
rev | line source |
---|---|
15817 | 1 EXTRA_DIST = \ |
2 getopt.c \ | |
3 getopt.h \ | |
4 getopt1.c | |
5 | |
6 SUBDIRS = libgnt plugins | |
7 | |
16480
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
8 if ENABLE_GNT |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
9 |
15817 | 10 bin_PROGRAMS = finch |
11 | |
16480
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
12 endif |
5b2b0fbace45
I think this fixes #331.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15884
diff
changeset
|
13 |
15817 | 14 finch_SOURCES = \ |
15 gntaccount.c \ | |
16 gntblist.c \ | |
17 gntconn.c \ | |
18 gntconv.c \ | |
19 gntdebug.c \ | |
20 gntft.c \ | |
15822 | 21 finch.c \ |
15817 | 22 gntidle.c \ |
23 gntnotify.c \ | |
24 gntplugin.c \ | |
25 gntpounce.c \ | |
26 gntprefs.c \ | |
27 gntrequest.c \ | |
18473
38ff7582c569
Silent sound for finch. The audible stuff will get in in a later release.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16480
diff
changeset
|
28 gntsound.c \ |
15817 | 29 gntstatus.c \ |
30 gntui.c | |
31 | |
32 finch_headers = \ | |
33 gntaccount.h \ | |
34 gntblist.h \ | |
35 gntconn.h \ | |
36 gntconv.h \ | |
37 gntdebug.h \ | |
38 gntft.h \ | |
15822 | 39 finch.h \ |
15817 | 40 gntidle.h \ |
41 gntnotify.h \ | |
42 gntplugin.h \ | |
43 gntpounce.h \ | |
44 gntprefs.h \ | |
45 gntrequest.h \ | |
18473
38ff7582c569
Silent sound for finch. The audible stuff will get in in a later release.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16480
diff
changeset
|
46 gntsound.h \ |
15817 | 47 gntstatus.h \ |
48 gntui.h | |
49 | |
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
|
50 finchincludedir=$(includedir)/finch |
15817 | 51 finchinclude_HEADERS = \ |
52 $(finch_headers) | |
53 | |
54 finch_DEPENDENCIES = @LIBOBJS@ | |
55 finch_LDFLAGS = -export-dynamic | |
56 finch_LDADD = \ | |
57 @LIBOBJS@ \ | |
58 $(DBUS_LIBS) \ | |
59 $(INTLLIBS) \ | |
60 $(GLIB_LIBS) \ | |
61 $(LIBXML_LIBS) \ | |
62 $(GNT_LIBS) \ | |
63 ./libgnt/libgnt.la \ | |
64 $(top_builddir)/libpurple/libpurple.la | |
65 | |
66 AM_CPPFLAGS = \ | |
67 -DSTANDALONE \ | |
68 -DBR_PTHREADS=0 \ | |
69 -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
|
70 -DLIBDIR=\"$(libdir)/finch/\" \ |
15817 | 71 -DLOCALEDIR=\"$(datadir)/locale\" \ |
72 -DSYSCONFDIR=\"$(sysconfdir)\" \ | |
73 -I$(top_srcdir)/libpurple/ \ | |
74 -I$(top_srcdir) \ | |
75 -I$(srcdir)/libgnt/ \ | |
76 $(DEBUG_CFLAGS) \ | |
77 $(GLIB_CFLAGS) \ | |
78 $(DBUS_CFLAGS) \ | |
79 $(LIBXML_CFLAGS) \ | |
80 $(GNT_CFLAGS) |