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