Home | History | Annotate | Line # | Download | only in cribbage
Makefile revision 1.1.1.1
      1  1.1  cgd #	@(#)Makefile	5.11 (Berkeley) 5/11/90
      2  1.1  cgd 
      3  1.1  cgd PROG=	cribbage
      4  1.1  cgd DPADD=	${LIBCURSES} ${LIBTERM} ${LIBCOMPAT}
      5  1.1  cgd LDADD=	-lcurses -ltermlib -lcompat
      6  1.1  cgd SRCS=	extern.c crib.c cards.c instr.c io.c score.c support.c
      7  1.1  cgd MAN6=	cribbage.0
      8  1.1  cgd HIDEGAME=hidegame
      9  1.1  cgd 
     10  1.1  cgd beforeinstall: 
     11  1.1  cgd 	install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/cribbage.n \
     12  1.1  cgd 	    ${DESTDIR}/usr/share/games/cribbage.instr
     13  1.1  cgd 
     14  1.1  cgd .include <bsd.prog.mk>
     15