1 # $NetBSD: Makefile,v 1.10 2021/04/15 01:55:21 mrg Exp $ 2 3 PROG= huntd 4 SRCS= answer.c draw.c driver.c execute.c expl.c \ 5 extern.c makemaze.c shots.c support.c terminal.c 6 MAN= huntd.6 7 8 CPPFLAGS+=-I${.CURDIR}/../include 9 10 .include <bsd.own.mk> 11 12 # Appears wrong - should not exceed bounds of array. 13 COPTS.answer.c+= ${GCC_NO_STRINGOP_OVERFLOW} 14 COPTS.shots.c+= ${GCC_NO_STRINGOP_OVERFLOW} 15 COPTS.driver.c+= ${GCC_NO_STRINGOP_OVERFLOW} 16 17 .include <bsd.prog.mk> 18