Home | History | Annotate | Line # | Download | only in cribbage
Makefile revision 1.13
      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 
      6 PROG=	cribbage
      7 DPADD=	${LIBCURSES} ${LIBTERMINFO}
      8 LDADD=	-lcurses -lterminfo
      9 SRCS=	extern.c crib.c cards.c instr.c io.c score.c support.c
     10 MAN=	cribbage.6
     11 HIDEGAME=hidegame
     12 SETGIDGAME=yes
     13 .if ${MKSHARE} != "no"
     14 FILES=	cribbage.n
     15 FILESNAME=cribbage.instr
     16 FILESDIR=/usr/share/games
     17 .endif
     18 
     19 .include <bsd.prog.mk>
     20