1#	$NetBSD: Makefile,v 1.13 2010/02/06 23:45:25 he Exp $
2#	@(#)Makefile	8.1 (Berkeley) 5/31/93
3
4.include <bsd.own.mk>
5
6PROG=	cribbage
7DPADD=	${LIBCURSES} ${LIBTERMINFO}
8LDADD=	-lcurses -lterminfo
9SRCS=	extern.c crib.c cards.c instr.c io.c score.c support.c
10MAN=	cribbage.6
11HIDEGAME=hidegame
12SETGIDGAME=yes
13.if ${MKSHARE} != "no"
14FILES=	cribbage.n
15FILESNAME=cribbage.instr
16FILESDIR=/usr/share/games
17.endif
18
19.include <bsd.prog.mk>
20