summaryrefslogtreecommitdiff
path: root/games/hangman/Makefile
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-07-24 00:11:12 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-07-24 00:11:12 +0000
commit7c5db15603132b9f94a11af57c5a56b205c0eaff (patch)
tree47384a9485fd95c587188df50a275d708da17fa4 /games/hangman/Makefile
parent8a2ab60466cbd2986529c0e969ebfa5a622a5aa7 (diff)
-lcurses, not termcap/termlib
Diffstat (limited to 'games/hangman/Makefile')
-rw-r--r--games/hangman/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/games/hangman/Makefile b/games/hangman/Makefile
index d5719e2780b..d07b8dd6df5 100644
--- a/games/hangman/Makefile
+++ b/games/hangman/Makefile
@@ -1,11 +1,11 @@
-# $OpenBSD: Makefile,v 1.3 1997/09/21 11:36:10 deraadt Exp $
+# $OpenBSD: Makefile,v 1.4 1998/07/24 00:10:32 millert Exp $
PROG= hangman
SRCS= endgame.c extern.c getguess.c getword.c main.c playgame.c \
prdata.c prman.c prword.c setup.c
MAN= hangman.6
-DPADD= ${LIBCURSES} ${LIBTERMLIB}
-LDADD= -lcurses -ltermlib
+DPADD= ${LIBCURSES}
+LDADD= -lcurses
HIDEGAME=hidegame
.include <bsd.prog.mk>