diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 05:44:24 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 05:44:24 +0000 |
commit | 4adfa3b2fa28b8554417ebd2a4ac71515a8062cd (patch) | |
tree | 7f76b98f24dd983e73fb8b3944cc1b5b7b863d70 /games/worms | |
parent | 8df7fcc1f711d8428c118f3de38e6f63a762ce05 (diff) |
Always use -ltermlib when linking with -lcurses
Depend on LIBTERMCAP and LIBTERMLIB as appropriate
Diffstat (limited to 'games/worms')
-rw-r--r-- | games/worms/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/worms/Makefile b/games/worms/Makefile index ea9c3bf2f39..c6963fb7f62 100644 --- a/games/worms/Makefile +++ b/games/worms/Makefile @@ -3,7 +3,7 @@ PROG= worms MAN= worms.6 -DPADD= ${LIBCURSES} ${LIBTERM} -LDADD= -lcurses -ltermcap +DPADD= ${LIBCURSES} ${LIBTERMLIB} +LDADD= -lcurses -ltermlib .include <bsd.prog.mk> |