diff options
author | ache <ache@FreeBSD.org> | 2000-09-16 03:52:06 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-09-16 03:52:06 +0000 |
commit | e5f9e7dd4a25ff9e49c74ec2dab31487a72f5806 (patch) | |
tree | 946b6bc98aa7d0e990a85f53d626a0340f4d30e3 /games/worms | |
parent | 7a44ca40ed25070ef620bcb4170b4579aafd83b1 (diff) | |
download | FreeBSD-src-e5f9e7dd4a25ff9e49c74ec2dab31487a72f5806.zip FreeBSD-src-e5f9e7dd4a25ff9e49c74ec2dab31487a72f5806.tar.gz |
Remove unneded -ltermcap or -lmytinfo
Diffstat (limited to 'games/worms')
-rw-r--r-- | games/worms/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/games/worms/Makefile b/games/worms/Makefile index 2933f95..b6a2389 100644 --- a/games/worms/Makefile +++ b/games/worms/Makefile @@ -1,8 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 5/31/93 +# $FreeBSD$ PROG= worms MAN6= worms.6 -DPADD= ${LIBCURSES} ${LIBTERMCAP} -LDADD= -lcurses -ltermcap +DPADD= ${LIBCURSES} +LDADD= -lcurses .include <bsd.prog.mk> |