ahci - Add quirks for Marvell devices
[dragonfly.git] / games / cribbage / Makefile
blob0579fe0faf029548043788191ab646040b5808df
1 # @(#)Makefile 8.1 (Berkeley) 5/31/93
2 # $FreeBSD: src/games/cribbage/Makefile,v 1.7.2.5 2002/08/07 16:31:41 ru Exp $
4 PROG= cribbage
5 DPADD= ${LIBNCURSES}
6 LDADD= -lprivate_ncurses
8 CFLAGS+= -I${_SHLIBDIRPREFIX}/usr/include/priv/ncurses
9 LDFLAGS+= ${PRIVATELIB_LDFLAGS}
11 SRCS= extern.c crib.c cards.c instr.c io.c score.c support.c
12 FILES= cribbage.n
13 FILESNAME_cribbage.n= cribbage.instr
14 MAN= cribbage.6
15 HIDEGAME=hidegame
17 beforeinstall:
18 .if !exists(${DESTDIR}/var/games/criblog)
19 ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
20 ${DESTDIR}/var/games/criblog
21 .endif
23 .include <bsd.prog.mk>