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