Home | History | Annotate | Line # | Download | only in cribbage
Makefile revision 1.6
      1 #	$NetBSD: Makefile,v 1.6 1996/10/18 02:45:34 thorpej 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 
     11 beforeinstall: 
     12 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/cribbage.n \
     13 	    ${DESTDIR}/usr/share/games/cribbage.instr
     14 
     15 .include <bsd.prog.mk>
     16