summaryrefslogtreecommitdiffstats
path: root/snake/snake
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>1994-05-23 05:32:40 +0000
committercgd <cgd@NetBSD.org>1994-05-23 05:32:40 +0000
commit9767d7d03c4e280b63b5bdf987c18d26bd75b3f9 (patch)
treebe275869bc14ff7192d8d8840c10ec8787380645 /snake/snake
parent0b09ff9c6eb42c5557ff22b470c03b4bca1bda5a (diff)
downloadbsdgames-darwin-9767d7d03c4e280b63b5bdf987c18d26bd75b3f9.tar.gz
bsdgames-darwin-9767d7d03c4e280b63b5bdf987c18d26bd75b3f9.tar.zst
bsdgames-darwin-9767d7d03c4e280b63b5bdf987c18d26bd75b3f9.zip
need -lcompat
Diffstat (limited to 'snake/snake')
-rw-r--r--snake/snake/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/snake/snake/Makefile b/snake/snake/Makefile
index 3f4b9e44..812082e0 100644
--- a/snake/snake/Makefile
+++ b/snake/snake/Makefile
@@ -1,11 +1,11 @@
# from: @(#)Makefile 5.11 (Berkeley) 2/28/91
-# $Id: Makefile,v 1.3 1993/08/01 05:44:15 mycroft Exp $
+# $Id: Makefile,v 1.4 1994/05/23 05:37:40 cgd Exp $
PROG= snake
SRCS= snake.c move.c
MAN6= snake.0
-DPADD= ${LIBM} ${LIBTERM}
-LDADD= -lm -ltermcap
+DPADD= ${LIBM} ${LIBTERM} ${LIBCOMPAT}
+LDADD= -lm -ltermcap -lcompat
HIDEGAME=hidegame
.include "../../Makefile.inc"