diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-01-17 07:51:07 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-01-17 07:51:07 +0000 |
commit | ab9bd1b7339a484e8cc875be1015b837d317d05f (patch) | |
tree | 2af84fcef99897531792aa6ca6f80f7b412c7faa /games/hack | |
parent | c8986c6dbfedc6946433e64e7bc511aadb9823e5 (diff) |
no need to link with -lcompat
Diffstat (limited to 'games/hack')
-rw-r--r-- | games/hack/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/hack/Makefile b/games/hack/Makefile index f6deec20db1..05be39bb975 100644 --- a/games/hack/Makefile +++ b/games/hack/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 1997/01/03 03:03:59 etheisen Exp $ +# $OpenBSD: Makefile,v 1.6 1997/01/17 07:51:06 millert Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 PROG= hack @@ -17,7 +17,7 @@ SRCS+= alloc.c hack.Decl.c hack.apply.c hack.bones.c hack.c hack.cmd.c \ hack.wizard.c hack.worm.c hack.worn.c hack.zap.c rnd.c MAN= hack.6 DPADD+= ${LIBTERMCAP} ${LIBCOMPAT} -LDADD+= -ltermcap -lcompat +LDADD+= -ltermcap HIDEGAME=hidegame CLEANFILES+=hack.onames.h makedefs |