xref: /openbsd-src/games/cribbage/Makefile (revision fb604f45231b39a797693bd705a1f6f71abdbc7d)
1#	$OpenBSD: Makefile,v 1.9 2015/03/12 02:19:10 bentley 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
8
9beforeinstall:
10	${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
11	    ${.CURDIR}/cribbage.n ${DESTDIR}/usr/share/games/cribbage.instr
12
13.include <bsd.prog.mk>
14