87d1d157b3
The most visible change is that the scrolling buffer of messages now actually scrolls and keeps history, and you type on the bottom line only. For now you can page through the history with ^P/^N; that's not ideal but one can't fix everything all at once. Use resizeable array code (roughly the same that I floated a while ago in connection with make) to hold the scroll.
15 lines
420 B
Makefile
15 lines
420 B
Makefile
# $NetBSD: Makefile,v 1.16 2009/03/15 03:33:56 dholland Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 5/31/93
|
|
|
|
PROG= sail
|
|
SRCS= main.c pl_main.c pl_1.c pl_2.c pl_3.c pl_4.c pl_5.c pl_6.c pl_7.c \
|
|
dr_main.c dr_1.c dr_2.c dr_3.c dr_4.c dr_5.c lo_main.c \
|
|
assorted.c game.c globals.c misc.c parties.c sync.c array.c version.c
|
|
MAN= sail.6
|
|
DPADD= ${LIBCURSES}
|
|
LDADD= -lcurses
|
|
HIDEGAME=hidegame
|
|
SETGIDGAME=yes
|
|
|
|
.include <bsd.prog.mk>
|