1# $OpenBSD: Makefile,v 1.8 2002/05/31 03:46:35 pjanzen Exp $ 2 3PROG= cribbage 4DPADD= ${LIBCURSES} 5LDADD= -lcurses 6SRCS= extern.c crib.c cards.c instr.c io.c score.c support.c 7MAN= cribbage.6 8BINMODE=2555 9 10beforeinstall: 11 ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ 12 ${.CURDIR}/cribbage.n ${DESTDIR}/usr/share/games/cribbage.instr 13 14.include <bsd.prog.mk> 15