Makefile revision 1.5
1# $NetBSD: Makefile,v 1.5 1995/03/21 15:08:39 cgd Exp $ 2# @(#)Makefile 8.1 (Berkeley) 5/31/93 3 4PROG= cribbage 5DPADD= ${LIBCURSES} ${LIBTERM} 6LDADD= -lcurses -ltermlib 7SRCS= extern.c crib.c cards.c instr.c io.c score.c support.c 8MAN= cribbage.6 9HIDEGAME=hidegame 10 11beforeinstall: 12 install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/cribbage.n \ 13 ${DESTDIR}/usr/share/games/cribbage.instr 14 15.include <bsd.prog.mk> 16