Home | History | Annotate | Line # | Download | only in fido2-token
      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-token
      8 SRCS+=\
      9 base64.c \
     10 bio.c \
     11 config.c \
     12 credman.c \
     13 fido2-token.c \
     14 largeblob.c \
     15 pin.c \
     16 token.c \
     17 util.c
     18 
     19 SRCS+=\
     20 explicit_bzero.c \
     21 freezero.c \
     22 readpassphrase.c \
     23 recallocarray.c
     24 
     25 COPTS.util.c+=-Wno-error=deprecated-declarations
     26 
     27 .include <bsd.prog.mk>
     28