diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 05:47:53 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 05:47:53 +0000 |
commit | 7e2fc8ed2758bd15f0698407d69eb61815a7a892 (patch) | |
tree | 65afce026e22bf9f12d96ff643e64557f36e4119 /games/snake | |
parent | 4adfa3b2fa28b8554417ebd2a4ac71515a8062cd (diff) |
Always use -ltermlib when linking with -lcurses
Be comsistent in use of LIBTERMCAP and LIBTERMLIB when depending
Diffstat (limited to 'games/snake')
-rw-r--r-- | games/snake/snake/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/snake/snake/Makefile b/games/snake/snake/Makefile index ab465a34828..1fe449e63d2 100644 --- a/games/snake/snake/Makefile +++ b/games/snake/snake/Makefile @@ -4,7 +4,7 @@ PROG= snake SRCS= snake.c move.c MAN= snake.6 -DPADD= ${LIBM} ${LIBTERM} ${LIBCOMPAT} +DPADD= ${LIBM} ${LIBTERMCAP} ${LIBCOMPAT} LDADD= -lm -ltermcap -lcompat HIDEGAME=hidegame |