summaryrefslogtreecommitdiffstats
path: root/games/cribbage/Makefile
blob: d9867f5c885d8093bdbc57d433dfa62e883c8204 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#	$OpenBSD: Makefile,v 1.9 2015/03/12 02:19:10 bentley Exp $

PROG=	cribbage
DPADD=	${LIBCURSES}
LDADD=	-lcurses
SRCS=	extern.c crib.c cards.c instr.c io.c score.c support.c
MAN=	cribbage.6

beforeinstall: 
	${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
	    ${.CURDIR}/cribbage.n ${DESTDIR}/usr/share/games/cribbage.instr

.include <bsd.prog.mk>