Home | History | Annotate | Line # | Download | only in cribbage
Makefile revision 1.3
      1 #	from: @(#)Makefile	5.11 (Berkeley) 5/11/90
      2 #	$Id: Makefile,v 1.3 1993/08/01 05:45:43 mycroft Exp $
      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 MAN6=	cribbage.0
      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