1 1.8 riastrad # $NetBSD: Makefile,v 1.8 2025/10/19 00:59:58 riastradh Exp $ 2 1.1 christos 3 1.1 christos .include <bsd.own.mk> 4 1.6 christos .include "${.PARSEDIR}/../../Makefile.inc" 5 1.1 christos 6 1.1 christos DIST=${NETBSDSRCDIR}/external/bsd/pam-u2f/dist 7 1.1 christos 8 1.1 christos .PATH: ${DIST} ${DIST}/pamu2fcfg 9 1.1 christos 10 1.1 christos CFFILE=${DIST}/configure.ac 11 1.1 christos 12 1.1 christos CPPFLAGS+= -I${DIST} -I${.CURDIR} 13 1.1 christos 14 1.1 christos BINDIR=/usr/bin 15 1.1 christos PROG=pamu2fcfg 16 1.1 christos SRCS=pamu2fcfg.c cmdline.c b64.c readpassphrase.c explicit_bzero.c util.c 17 1.1 christos COPTS.util.c += -Wno-error=stack-protector 18 1.1 christos 19 1.8 riastrad LDADD+=-lpam -lfido2 -lcbor -lusbhid -lcrypto -lm 20 1.8 riastrad DPADD+=${LIBPAM} ${LIBFIDO2} ${LIBCBOR} ${LIBUSBHID} ${LIBCRYPTO} ${LIBM} 21 1.1 christos 22 1.4 khorben pamu2fcfg.1: 23 1.4 khorben asciidoc -b docbook45 -d manpage -o pamu2fcfg.1.xml ../../dist/man/pamu2fcfg.1.txt 24 1.4 khorben xsltproc --nonet --xinclude -o pamu2fcfg.1 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl' pamu2fcfg.1.xml 25 1.4 khorben rm -f pamu2fcfg.1.xml 26 1.4 khorben 27 1.5 christos COPTS.util.c+= -Wno-error=deprecated-declarations 28 1.5 christos 29 1.1 christos .include <bsd.prog.mk> 30