BSD 4_3_Reno release
[unix-history] / usr / src / games / cribbage / Makefile
CommitLineData
1c15e888 1# @(#)Makefile 5.11 (Berkeley) 5/11/90
8f9a6d17 2
770d844a
KB
3PROG= cribbage
4DPADD= ${LIBCURSES} ${LIBTERM} ${LIBCOMPAT}
5LDADD= -lcurses -ltermlib -lcompat
6SRCS= extern.c crib.c cards.c instr.c io.c score.c support.c
7MAN6= cribbage.0
8HIDEGAME=hidegame
8f9a6d17 9
770d844a
KB
10beforeinstall:
11 install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/cribbage.n \
12 ${DESTDIR}/usr/share/games/cribbage.instr
8f9a6d17 13
770d844a 14.include <bsd.prog.mk>