Mercurial > pidgin.yaz
annotate finch/libgnt/wms/Makefile.am @ 27886:faee69fed1c2
go back to is_zenkaku_space() due to a problem of i18n url such as ja.wikipedia.org.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Sat, 06 Sep 2008 19:13:49 +0000 |
parents | 635b7cd19110 |
children | bb99ee66120e |
rev | line source |
---|---|
23985
635b7cd19110
The irssi wm does not need libpurple, and use relative path to libgnt.la
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19168
diff
changeset
|
1 wms = irssi.la |
19168
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
2 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
|
3 # These custom wms depend on libpurple |
23985
635b7cd19110
The irssi wm does not need libpurple, and use relative path to libgnt.la
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19168
diff
changeset
|
4 purple_wms = s.la |
19168
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
5 else |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
6 purple_wms = |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
7 endif |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
8 |
15818 | 9 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:
16927
diff
changeset
|
10 irssi_la_LDFLAGS = -module -avoid-version |
15818 | 11 |
12 plugin_LTLIBRARIES = \ | |
23985
635b7cd19110
The irssi wm does not need libpurple, and use relative path to libgnt.la
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19168
diff
changeset
|
13 $(wms) \ |
19168
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
14 $(purple_wms) |
f63e38e33811
Some lines to the auto-thingies to aid in libgnt building standalone
Eric Polino <aluink@pidgin.im>
parents:
17989
diff
changeset
|
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:
16927
diff
changeset
|
16 plugindir = $(libdir)/gnt |
15818 | 17 |
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:
16927
diff
changeset
|
18 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:
16927
diff
changeset
|
19 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:
16927
diff
changeset
|
20 $(GLIB_LIBS) \ |
23985
635b7cd19110
The irssi wm does not need libpurple, and use relative path to libgnt.la
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19168
diff
changeset
|
21 ../libgnt.la |
15818 | 22 |
23 s_la_SOURCES = s.c | |
24 s_la_LIBADD = \ | |
25 $(GLIB_LIBS) \ | |
23985
635b7cd19110
The irssi wm does not need libpurple, and use relative path to libgnt.la
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
19168
diff
changeset
|
26 ../libgnt.la \ |
15818 | 27 $(top_builddir)/libpurple/libpurple.la |
28 | |
29 EXTRA_DIST = | |
30 | |
31 AM_CPPFLAGS = \ | |
32 -DDATADIR=\"$(datadir)\" \ | |
33 -I$(top_srcdir)/libpurple \ | |
34 -I$(top_srcdir)/finch \ | |
35 -I$(top_srcdir)/finch/libgnt \ | |
36 $(DEBUG_CFLAGS) \ | |
37 $(GLIB_CFLAGS) \ | |
38 $(GNT_CFLAGS) \ | |
39 $(PLUGIN_CFLAGS) | |
40 |