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