From 7f6f9da259500d6a423073a48f8a9c25aaf6de4b Mon Sep 17 00:00:00 2001 From: cgd Date: Tue, 23 Mar 1993 02:36:44 +0000 Subject: [PATCH] got rid of -lcompat, and fixed it so that the man page works properly with CVS. --- gnu/games/chess/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gnu/games/chess/Makefile b/gnu/games/chess/Makefile index d5fa6f48f53c..8374899e9bae 100644 --- a/gnu/games/chess/Makefile +++ b/gnu/games/chess/Makefile @@ -7,6 +7,17 @@ MAN6= chess.0 DPADD= ${LIBCURSES} ${LIBTERM} LDADD= -lcurses -ltermlib HIDEGAME=hidegame +MANALL+= chess.6 + +chess.6: + @if [ -d ${.CURDIR}/obj ]; then \ + /bin/rm -rf ${.CURDIR}/obj/chess.6 ; \ + ln -s ${.CURDIR}/DOCUMENTATION/MAN-PAGE ${.CURDIR}/obj/chess.6 ; \ + else \ + true; \ + /bin/rm -rf ${.CURDIR}/chess.6 ; \ + ln -s ${.CURDIR}/DOCUMENTATION/MAN-PAGE ${.CURDIR}/chess.6 ; \ + fi beforeinstall: install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/gnuchess.book \