blob: 0752012678fa54952236940e01c26ff9ce98f6ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.6 1998/07/24 00:10:25 millert 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
HIDEGAME=hidegame
beforeinstall:
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
${.CURDIR}/cribbage.n ${DESTDIR}/usr/share/games/cribbage.instr
.include <bsd.prog.mk>
|