Mercurial > pidgin
annotate finch/Makefile.am @ 19326:4ce4ff8a3c19
I broke the build. Sorry :(
| author | Sadrul Habib Chowdhury <imadil@gmail.com> |
|---|---|
| date | Sat, 18 Aug 2007 03:19:08 +0000 |
| parents | 3432d37a4a77 |
| children | e1751162ab1f 315151da0dc6 |
| 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 \ | |
| 19100 | 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 \ | |
| 19100 | 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) \ | |
| 19100 | 63 $(GSTREAMER_LIBS) \ |
| 15817 | 64 ./libgnt/libgnt.la \ |
| 65 $(top_builddir)/libpurple/libpurple.la | |
| 66 | |
| 67 AM_CPPFLAGS = \ | |
| 68 -DSTANDALONE \ | |
| 69 -DBR_PTHREADS=0 \ | |
| 70 -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
|
71 -DLIBDIR=\"$(libdir)/finch/\" \ |
| 15817 | 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) \ |
| 15817 | 82 $(GNT_CFLAGS) |
