diff options
author | 1996-06-02 05:57:03 +0000 | |
---|---|---|
committer | 1996-06-02 05:57:03 +0000 | |
commit | fbe8d96399a00bed47ff6896a3149c78a6ca45f1 (patch) | |
tree | 59e76287d0106cd81c2ce7e7f3e98ced4754dcdf | |
parent | Always use -ltermlib when linking with -lcurses (diff) | |
download | wireguard-openbsd-fbe8d96399a00bed47ff6896a3149c78a6ca45f1.tar.xz wireguard-openbsd-fbe8d96399a00bed47ff6896a3149c78a6ca45f1.zip |
Correct library dependencies
-rw-r--r-- | gnu/games/chess/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/games/chess/Makefile b/gnu/games/chess/Makefile index d1547c37977..bd93e826b63 100644 --- a/gnu/games/chess/Makefile +++ b/gnu/games/chess/Makefile @@ -1,11 +1,11 @@ # from: @(#)Makefile 5.4 (Berkeley) 5/11/90 -# $Id: Makefile,v 1.1.1.1 1995/10/18 08:41:10 deraadt Exp $ +# $Id: Makefile,v 1.2 1996/06/02 05:57:03 tholo Exp $ PROG= chess SRCS= gnuchess.c uxdsp.c move.c CFLAGS+=-DNEWMOVE=12 MAN= chess.6 -DPADD= ${LIBCURSES} ${LIBTERM} /usr/lib/libgnumalloc.a +DPADD= ${LIBCURSES} ${LIBTERMLIB} /usr/lib/libgnumalloc.a LDADD= -lcurses -ltermlib -lgnumalloc HIDEGAME=hidegame CLEANFILES += chess.6 |