Home | History | Annotate | Line # | Download | only in ssh-keygen
Makefile revision 1.8.8.4
      1 #	$NetBSD: Makefile,v 1.8.8.4 2023/12/25 12:22:53 martin Exp $
      2 
      3 BINDIR=	/usr/bin
      4 
      5 PROG=	ssh-keygen
      6 SRCS=	ssh-keygen.c moduli.c sshsig.c
      7 
      8 COPTS.ssh-keygen.c+=	-Wno-pointer-sign
      9 
     10 COPTS.ssh-keygen.c+=	${GCC_NO_FORMAT_TRUNCATION}
     11 COPTS.ssh-keygen.c+= -Wno-error=deprecated-declarations
     12 COPTS.moduli.c+= -Wno-error=deprecated-declarations
     13 
     14 .include <bsd.prog.mk>
     15