diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
commit | 7c5db15603132b9f94a11af57c5a56b205c0eaff (patch) | |
tree | 47384a9485fd95c587188df50a275d708da17fa4 /games/rain | |
parent | 8a2ab60466cbd2986529c0e969ebfa5a622a5aa7 (diff) |
-lcurses, not termcap/termlib
Diffstat (limited to 'games/rain')
-rw-r--r-- | games/rain/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/rain/Makefile b/games/rain/Makefile index 070cedf16ef..9a415bad9eb 100644 --- a/games/rain/Makefile +++ b/games/rain/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.4 1998/02/22 13:16:40 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 1998/07/24 00:10:37 millert Exp $ PROG= rain MAN= rain.6 -DPADD= ${LIBTERMLIB} -LDADD= -ltermlib +DPADD= ${LIBCURSES} +LDADD= -lcurses .include <bsd.prog.mk> |