1994-09-04 04:03:31 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 5/31/93
|
1999-12-10 21:13:42 +00:00
|
|
|
# $FreeBSD$
|
1994-09-04 04:03:31 +00:00
|
|
|
|
|
|
|
PROG= cribbage
|
2000-09-16 03:52:06 +00:00
|
|
|
DPADD= ${LIBCURSES} ${LIBCOMPAT}
|
|
|
|
LDADD= -lcurses -lcompat
|
1994-09-04 04:03:31 +00:00
|
|
|
SRCS= extern.c crib.c cards.c instr.c io.c score.c support.c
|
2001-12-17 15:23:57 +00:00
|
|
|
FILES= cribbage.n
|
|
|
|
FILESNAME_cribbage.n= cribbage.instr
|
2001-03-26 14:22:12 +00:00
|
|
|
MAN= cribbage.6
|
1994-09-04 04:03:31 +00:00
|
|
|
HIDEGAME=hidegame
|
|
|
|
|
1995-05-30 03:37:36 +00:00
|
|
|
beforeinstall:
|
1999-12-10 21:13:42 +00:00
|
|
|
.if !exists(${DESTDIR}/var/games/criblog)
|
2002-07-29 09:40:17 +00:00
|
|
|
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
|
1997-09-24 04:00:29 +00:00
|
|
|
${DESTDIR}/var/games/criblog
|
1999-12-10 21:13:42 +00:00
|
|
|
.endif
|
1994-09-04 04:03:31 +00:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|