Home | History | Annotate | Line # | Download | only in fido2-assert
      1 #	$NetBSD: Makefile,v 1.3 2023/05/08 23:45:52 christos Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 BINDIR=/usr/bin
      6 
      7 PROG=	fido2-assert
      8 SRCS+=\
      9 config.c \
     10 assert_get.c \
     11 assert_verify.c \
     12 fido2-assert.c \
     13 largeblob.c \
     14 base64.c \
     15 bio.c \
     16 credman.c \
     17 pin.c \
     18 token.c \
     19 util.c
     20 
     21 SRCS+=\
     22 explicit_bzero.c \
     23 freezero.c \
     24 readpassphrase.c \
     25 recallocarray.c
     26 
     27 COPTS.assert_verify.c+=-Wno-error=deprecated-declarations
     28 COPTS.util.c+=-Wno-error=deprecated-declarations
     29 
     30 .include <bsd.prog.mk>
     31