NetBSD/gnu/games/chess/Makefile

23 lines
518 B
Makefile
Raw Normal View History

1997-07-21 08:48:06 +04:00
# $NetBSD: Makefile,v 1.11 1997/07/21 04:48:06 mrg Exp $
1993-08-01 09:37:30 +04:00
# from: @(#)Makefile 5.4 (Berkeley) 5/11/90
1993-03-21 12:45:37 +03:00
1997-07-21 08:48:06 +04:00
.if (${MACHINE_ARCH} != "alpha")
1993-03-21 12:45:37 +03:00
PROG= chess
SRCS= gnuchess.c uxdsp.c move.c
CFLAGS+=-DNEWMOVE=12
1997-03-25 01:02:40 +03:00
DPADD= ${LIBCURSES} ${LIBTERM} ${LIBGNUMALLOC}
1993-10-26 09:51:34 +03:00
LDADD= -lcurses -ltermlib -lgnumalloc
1993-03-21 12:45:37 +03:00
HIDEGAME=hidegame
1997-03-25 01:02:40 +03:00
FILES=gnuchess.book
FILESDIR=/usr/share/games
1997-07-21 08:48:06 +04:00
.endif
MAN= chess.6
CLEANFILES += chess.6
chess.6:
1993-12-28 13:59:05 +03:00
/bin/rm -rf ${.OBJDIR}/chess.6
ln -s ${.CURDIR}/DOCUMENTATION/MAN-PAGE ${.OBJDIR}/chess.6
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>