Home | History | Annotate | Line # | Download | only in cribbage
Makefile revision 1.11
      1 #	$NetBSD: Makefile,v 1.11 1998/09/29 07:33:21 lukem Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 5/31/93
      3 
      4 PROG=	cribbage
      5 DPADD=	${LIBCURSES}
      6 LDADD=	-lcurses
      7 SRCS=	extern.c crib.c cards.c instr.c io.c score.c support.c
      8 MAN=	cribbage.6
      9 HIDEGAME=hidegame
     10 SETGIDGAME=yes
     11 .if !defined(NOSHARE)
     12 FILES=	cribbage.n
     13 FILESNAME=cribbage.instr
     14 FILESDIR=/usr/share/games
     15 .endif
     16 
     17 .include <bsd.prog.mk>
     18