comparison finch/libgnt/wms/Makefile.am @ 24055:635b7cd19110

The irssi wm does not need libpurple, and use relative path to libgnt.la so no change is needed when libgnt is built standalone.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Thu, 04 Sep 2008 22:45:17 +0000
parents f63e38e33811
children bb99ee66120e
comparison
equal deleted inserted replaced
24054:156913375b3f 24055:635b7cd19110
1 wms = irssi.la
1 if PURPLE_AVAILABLE 2 if PURPLE_AVAILABLE
2 # These custom wms depend on libpurple 3 # These custom wms depend on libpurple
3 purple_wms = s.la irssi.la 4 purple_wms = s.la
4 else 5 else
5 purple_wms = 6 purple_wms =
6 endif 7 endif
7 8
8 s_la_LDFLAGS = -module -avoid-version 9 s_la_LDFLAGS = -module -avoid-version
9 irssi_la_LDFLAGS = -module -avoid-version 10 irssi_la_LDFLAGS = -module -avoid-version
10 11
11 plugin_LTLIBRARIES = \ 12 plugin_LTLIBRARIES = \
13 $(wms) \
12 $(purple_wms) 14 $(purple_wms)
13 15
14 plugindir = $(libdir)/gnt 16 plugindir = $(libdir)/gnt
15 17
16 irssi_la_SOURCES = irssi.c 18 irssi_la_SOURCES = irssi.c
17 irssi_la_LIBADD = \ 19 irssi_la_LIBADD = \
18 $(GLIB_LIBS) \ 20 $(GLIB_LIBS) \
19 $(top_builddir)/finch/libgnt/libgnt.la 21 ../libgnt.la
20 22
21 s_la_SOURCES = s.c 23 s_la_SOURCES = s.c
22 s_la_LIBADD = \ 24 s_la_LIBADD = \
23 $(GLIB_LIBS) \ 25 $(GLIB_LIBS) \
24 $(top_builddir)/finch/libgnt/libgnt.la \ 26 ../libgnt.la \
25 $(top_builddir)/libpurple/libpurple.la 27 $(top_builddir)/libpurple/libpurple.la
26 28
27 EXTRA_DIST = 29 EXTRA_DIST =
28 30
29 AM_CPPFLAGS = \ 31 AM_CPPFLAGS = \