]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - games/cribbage/Makefile
This commit was generated by cvs2svn to compensate for changes in r104912,
[FreeBSD/FreeBSD.git] / games / cribbage / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 5/31/93
2 # $FreeBSD$
3
4 PROG=   cribbage
5 DPADD=  ${LIBCURSES} ${LIBCOMPAT}
6 LDADD=  -lcurses -lcompat
7 SRCS=   extern.c crib.c cards.c instr.c io.c score.c support.c
8 FILES=  cribbage.n
9 FILESNAME_cribbage.n=   cribbage.instr
10 MAN=    cribbage.6
11 HIDEGAME=hidegame
12
13 beforeinstall:
14 .if !exists(${DESTDIR}/var/games/criblog)
15         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
16             ${DESTDIR}/var/games/criblog
17 .endif
18
19 .include <bsd.prog.mk>