Home | History | Annotate | Line # | Download | only in tetris
      1 #	$NetBSD: Makefile,v 1.10 2023/06/03 09:09:09 lukem Exp $
      2 #	@(#)Makefile	8.1 (Berkeley) 5/31/93
      3 
      4 PROG=	tetris
      5 SRCS=	input.c screen.c shapes.c scores.c tetris.c
      6 MAN=	tetris.6
      7 DPADD=	${LIBTERMINFO}
      8 LDADD=	-lterminfo
      9 HIDEGAME=hidegame
     10 SETGIDGAME=yes
     11 
     12 COPTS.tetris.c+=	${CC_WNO_FORMAT_TRUNCATION}
     13 COPTS.scores.c+=	${CC_WNO_FORMAT_TRUNCATION}
     14 
     15 .include <bsd.prog.mk>
     16