1# $NetBSD: Makefile,v 1.11 2019/09/29 23:45:01 mrg Exp $ 2 3PROG= stat 4 5.if !defined(HOSTPROG) 6LINKS= ${BINDIR}/stat ${BINDIR}/readlink 7MLINKS= stat.1 readlink.1 8.endif 9 10.include <bsd.own.mk> 11 12# Has fallthru comment that is missed 13.if !defined(HOSTPROG) && defined(HAVE_GCC) && ${HAVE_GCC} >= 7 && ${ACTIVE_CC} == "gcc" 14COPTS.stat.c+= -Wno-error=implicit-fallthrough 15.endif 16 17COPTS.stat.c += -Wno-format-nonliteral 18 19.include <bsd.prog.mk> 20