Home | History | Annotate | Line # | Download | only in stat
      1 #	$NetBSD: Makefile,v 1.15 2024/01/29 22:01:58 christos Exp $
      2 
      3 PROG=	stat
      4 
      5 .if !defined(HOSTPROG)
      6 LINKS=	${BINDIR}/stat ${BINDIR}/readlink
      7 MAN=	stat.1 readlink.1
      8 .endif
      9 
     10 .include <bsd.own.mk>
     11 
     12 # Has fallthru comment that is missed
     13 COPTS.stat.c+=	${CC_WNO_IMPLICIT_FALLTHROUGH}
     14 
     15 COPTS.stat.c += -Wno-format-nonliteral
     16 
     17 .if !defined(HOSTPROG)
     18 LDADD+=	-lutil
     19 DPADD+=	${LIBUTIL}
     20 .endif
     21 
     22 .include <bsd.prog.mk>
     23