summaryrefslogtreecommitdiffstats
path: root/hunt
diff options
context:
space:
mode:
Diffstat (limited to 'hunt')
-rw-r--r--hunt/huntd/Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/hunt/huntd/Makefile b/hunt/huntd/Makefile
index 0981256f..131b7696 100644
--- a/hunt/huntd/Makefile
+++ b/hunt/huntd/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2014/03/29 22:29:55 dholland Exp $
+# $NetBSD: Makefile,v 1.7 2019/02/04 09:51:48 mrg Exp $
PROG= huntd
SRCS= answer.c draw.c driver.c execute.c expl.c \
@@ -7,4 +7,11 @@ MAN= huntd.6
CPPFLAGS+=-I${.CURDIR}/../include
+.include <bsd.own.mk>
+
+# Has fallthru comment that is missed
+.if defined(HAVE_GCC) && ${HAVE_GCC} == 7 && ${ACTIVE_CC} == "gcc"
+COPTS.shots.c+= -Wno-error=implicit-fallthrough
+.endif
+
.include <bsd.prog.mk>