Home | History | Annotate | Line # | Download | only in cribbage
Makefile revision 1.7
      1 #	$NetBSD: Makefile,v 1.7 1997/03/24 22:15:41 christos Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 5/31/93
      3 
      4 PROG=	cribbage
      5 DPADD=	${LIBCURSES} ${LIBTERM}
      6 LDADD=	-lcurses -ltermlib
      7 SRCS=	extern.c crib.c cards.c instr.c io.c score.c support.c
      8 MAN=	cribbage.6
      9 HIDEGAME=hidegame
     10 FILES=	cribbage.n
     11 FILESNAME=cribbage.instr
     12 FILESDIR=/usr/share/games
     13 
     14 .include <bsd.prog.mk>
     15