Mercurial > pidgin
annotate finch/libgnt/wms/Makefile.am @ 20125:3e8531514ad7
Add disconnection reasons to qq.
author | Will Thompson <will.thompson@collabora.co.uk> |
---|---|
date | Tue, 02 Oct 2007 00:14:12 +0000 |
parents | f63e38e33811 |
children | 315151da0dc6 635b7cd19110 |
rev | line source |
---|---|
19168
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
1 if PURPLE_AVAILABLE |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
2 # These custom wms depend on libpurple |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
3 purple_wms = s.la irssi.la |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
4 else |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
5 purple_wms = |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
6 endif |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
7 |
15817 | 8 s_la_LDFLAGS = -module -avoid-version |
17989
1bccb9641ef3
Add a new WM, irssi. Put the wm's in $(libdir)/gnt instead of in /finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16916
diff
changeset
|
9 irssi_la_LDFLAGS = -module -avoid-version |
15817 | 10 |
11 plugin_LTLIBRARIES = \ | |
19168
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
12 $(purple_wms) |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
13 |
17989
1bccb9641ef3
Add a new WM, irssi. Put the wm's in $(libdir)/gnt instead of in /finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16916
diff
changeset
|
14 plugindir = $(libdir)/gnt |
15817 | 15 |
17989
1bccb9641ef3
Add a new WM, irssi. Put the wm's in $(libdir)/gnt instead of in /finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16916
diff
changeset
|
16 irssi_la_SOURCES = irssi.c |
1bccb9641ef3
Add a new WM, irssi. Put the wm's in $(libdir)/gnt instead of in /finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16916
diff
changeset
|
17 irssi_la_LIBADD = \ |
1bccb9641ef3
Add a new WM, irssi. Put the wm's in $(libdir)/gnt instead of in /finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16916
diff
changeset
|
18 $(GLIB_LIBS) \ |
1bccb9641ef3
Add a new WM, irssi. Put the wm's in $(libdir)/gnt instead of in /finch.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
16916
diff
changeset
|
19 $(top_builddir)/finch/libgnt/libgnt.la |
15817 | 20 |
21 s_la_SOURCES = s.c | |
22 s_la_LIBADD = \ | |
23 $(GLIB_LIBS) \ | |
24 $(top_builddir)/finch/libgnt/libgnt.la \ | |
25 $(top_builddir)/libpurple/libpurple.la | |
26 | |
27 EXTRA_DIST = | |
28 | |
29 AM_CPPFLAGS = \ | |
30 -DDATADIR=\"$(datadir)\" \ | |
31 -I$(top_srcdir)/libpurple \ | |
32 -I$(top_srcdir)/finch \ | |
33 -I$(top_srcdir)/finch/libgnt \ | |
34 $(DEBUG_CFLAGS) \ | |
35 $(GLIB_CFLAGS) \ | |
36 $(GNT_CFLAGS) \ | |
37 $(PLUGIN_CFLAGS) | |
38 |