summaryrefslogtreecommitdiffstats
path: root/rain/Makefile
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>1999-07-30 02:14:56 +0000
committerhubertf <hubertf@NetBSD.org>1999-07-30 02:14:56 +0000
commitad5cd40187b784a973ea41e3d848a7cb9258f229 (patch)
tree1b0b0c0cd64731483ae02077394bbd30a89f6271 /rain/Makefile
parent13b270759f1529f9db9779c393c17985ff565bdf (diff)
downloadbsdgames-darwin-ad5cd40187b784a973ea41e3d848a7cb9258f229.tar.gz
bsdgames-darwin-ad5cd40187b784a973ea41e3d848a7cb9258f229.tar.zst
bsdgames-darwin-ad5cd40187b784a973ea41e3d848a7cb9258f229.zip
This patch converts rain(6) to use curses, thereby
significantly simplifying the code and improving its portability. It also adds a delay option from OpenBSD to make the display go at a useful speed on fast terminals, and fixes signal handling to make it reliable. Patch supplied by Joseph Myers <jsm28@cam.ac.uk> in PR 6659.
Diffstat (limited to 'rain/Makefile')
-rw-r--r--rain/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/rain/Makefile b/rain/Makefile
index e73cfce1..9f7cc8f6 100644
--- a/rain/Makefile
+++ b/rain/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.7 1998/02/04 10:21:12 christos Exp $
+# $NetBSD: Makefile,v 1.8 1999/07/30 02:14:56 hubertf Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
PROG= rain
MAN= rain.6
-DPADD= ${LIBTERMCAP}
-LDADD= -ltermcap
+DPADD= ${LIBCURSES}
+LDADD= -lcurses
.include <bsd.prog.mk>