Mercurial > pidgin.yaz
annotate finch/Makefile.am @ 19356:c9e545304827
Correct the mad-tongue smiley to be named properly. Fixes #2650
author | Kevin Stange <kevin@simguy.net> |
---|---|
date | Tue, 21 Aug 2007 00:05:40 +0000 |
parents | 3432d37a4a77 |
children | e1751162ab1f 315151da0dc6 |
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 \ | |
17 gntconn.c \ | |
18 gntconv.c \ | |
19 gntdebug.c \ | |
20 gntft.c \ | |
15823 | 21 finch.c \ |
15818 | 22 gntidle.c \ |
23 gntnotify.c \ | |
24 gntplugin.c \ | |
25 gntpounce.c \ | |
26 gntprefs.c \ | |
27 gntrequest.c \ | |
19100 | 28 gntsound.c \ |
15818 | 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 \ | |
15823 | 39 finch.h \ |
15818 | 40 gntidle.h \ |
41 gntnotify.h \ | |
42 gntplugin.h \ | |
43 gntpounce.h \ | |
44 gntprefs.h \ | |
45 gntrequest.h \ | |
19100 | 46 gntsound.h \ |
15818 | 47 gntstatus.h \ |
48 gntui.h | |
49 | |
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
|
50 finchincludedir=$(includedir)/finch |
15818 | 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) \ | |
19100 | 63 $(GSTREAMER_LIBS) \ |
15818 | 64 ./libgnt/libgnt.la \ |
65 $(top_builddir)/libpurple/libpurple.la | |
66 | |
67 AM_CPPFLAGS = \ | |
68 -DSTANDALONE \ | |
69 -DBR_PTHREADS=0 \ | |
70 -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
|
71 -DLIBDIR=\"$(libdir)/finch/\" \ |
15818 | 72 -DLOCALEDIR=\"$(datadir)/locale\" \ |
73 -DSYSCONFDIR=\"$(sysconfdir)\" \ | |
74 -I$(top_srcdir)/libpurple/ \ | |
75 -I$(top_srcdir) \ | |
76 -I$(srcdir)/libgnt/ \ | |
77 $(DEBUG_CFLAGS) \ | |
78 $(GLIB_CFLAGS) \ | |
79 $(DBUS_CFLAGS) \ | |
80 $(LIBXML_CFLAGS) \ | |
19100 | 81 $(GSTREAMER_CFLAGS) \ |
15818 | 82 $(GNT_CFLAGS) |