1 # $NetBSD: Makefile,v 1.9 2020/09/06 10:51:20 mrg 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+= ${GCC_NO_FORMAT_TRUNCATION} 13 COPTS.scores.c+= ${GCC_NO_FORMAT_TRUNCATION} 14 15 .include <bsd.prog.mk> 16