1994-09-04 06:03:31 +02:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 5/31/93
|
|
|
|
|
|
|
|
PROG= cribbage
|
1994-09-11 23:32:28 +02:00
|
|
|
DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBCOMPAT}
|
|
|
|
LDADD= -lcurses -ltermcap -lcompat
|
1994-09-04 06:03:31 +02:00
|
|
|
SRCS= extern.c crib.c cards.c instr.c io.c score.c support.c
|
|
|
|
MAN6= cribbage.6
|
|
|
|
HIDEGAME=hidegame
|
|
|
|
|
1995-05-30 05:37:36 +02:00
|
|
|
beforeinstall:
|
1997-02-09 03:52:41 +01:00
|
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
|
|
|
|
${.CURDIR}/cribbage.n ${DESTDIR}${SHAREDIR}/games/cribbage.instr
|
1997-09-24 06:00:29 +02:00
|
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
|
|
|
|
${DESTDIR}/var/games/criblog
|
1994-09-04 06:03:31 +02:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|