comparison finch/libgnt/wms/Makefile.am @ 17989:1bccb9641ef3

Add a new WM, irssi. Put the wm's in $(libdir)/gnt instead of in /finch. The features of the irssi WM include: 1. Buddylist and conversation windows are borderless and full height of the screen. 2. Conversation windows will have (full-screen-width - buddylist-width) width - It's possible to auto-resize the conversation windows when the buddylist is closed/opened/resized to keep this always true. But resizing the textview in conversation window is rather costly, especially when there's a lot of text in the scrollback. So it's not done yet. 3. All the other windows are always centered.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Sat, 02 Jun 2007 03:49:53 +0000
parents 0dcd915899ae
children f63e38e33811
comparison
equal deleted inserted replaced
17988:f78b5aee202d 17989:1bccb9641ef3
1 s_la_LDFLAGS = -module -avoid-version 1 s_la_LDFLAGS = -module -avoid-version
2 irssi_la_LDFLAGS = -module -avoid-version
2 3
3 plugin_LTLIBRARIES = \ 4 plugin_LTLIBRARIES = \
4 s.la 5 s.la \
6 irssi.la
5 7
6 plugindir = $(libdir)/finch 8 plugindir = $(libdir)/gnt
9
10 irssi_la_SOURCES = irssi.c
11 irssi_la_LIBADD = \
12 $(GLIB_LIBS) \
13 $(top_builddir)/finch/libgnt/libgnt.la
7 14
8 s_la_SOURCES = s.c 15 s_la_SOURCES = s.c
9 s_la_LIBADD = \ 16 s_la_LIBADD = \
10 $(GLIB_LIBS) \ 17 $(GLIB_LIBS) \
11 $(top_builddir)/finch/libgnt/libgnt.la \ 18 $(top_builddir)/finch/libgnt/libgnt.la \