Home | History | Annotate | Line # | Download | only in fido2-cred
      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-cred
      8 SRCS+=\
      9 config.c \
     10 cred_make.c \
     11 cred_verify.c \
     12 base64.c \
     13 bio.c \
     14 credman.c \
     15 fido2-cred.c \
     16 largeblob.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.util.c+=-Wno-error=deprecated-declarations
     28 
     29 .include <bsd.prog.mk>
     30