Makefile.bsd 405 B

1234567891011121314151617181920
  1. # $NetBSD: Makefile,v 1.12 1999/02/13 02:54:21 lukem Exp $
  2. # @(#)Makefile 8.1 (Berkeley) 5/31/93
  3. .include <bsd.own.mk>
  4. PROG= cribbage
  5. DPADD= ${LIBCURSES}
  6. LDADD= -lcurses
  7. SRCS= extern.c crib.c cards.c instr.c io.c score.c support.c
  8. MAN= cribbage.6
  9. HIDEGAME=hidegame
  10. SETGIDGAME=yes
  11. .if ${MKSHARE} != "no"
  12. FILES= cribbage.n
  13. FILESNAME=cribbage.instr
  14. FILESDIR=/usr/share/games
  15. .endif
  16. .include <bsd.prog.mk>