diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-03-21 23:50:30 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 1999-03-21 23:50:30 +0000 |
commit | fbb9c9bb18b9be9353d3232df9f3af78e7240d16 (patch) | |
tree | b853474a60b5b29ebf432b2511d53a0a76db1afa /games/worms | |
parent | d651b7b1678c28b1fe024d844639ddff5a19d089 (diff) |
-lcurses, not termcap/termlib
Diffstat (limited to 'games/worms')
-rw-r--r-- | games/worms/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/worms/Makefile b/games/worms/Makefile index 05d1689d9c8..4c957d94370 100644 --- a/games/worms/Makefile +++ b/games/worms/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.4 1998/02/26 07:58:11 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 1999/03/21 23:50:29 pjanzen Exp $ PROG= worms MAN= worms.6 -DPADD= ${LIBTERMLIB} -LDADD= -ltermlib +DPADD= ${LIBCURSES} +LDADD= -lcurses .include <bsd.prog.mk> |