1# 2# SPDX-License-Idendifier: BSD-2-Clause 3# 4# Copyright (c) 2025 FreeBSD Foundation 5# 6# This sofware was developed by Cy Schubert <cy@FreeBSD.org> 7# under sponsorship from the FreeBSD Foundation. 8# 9 10PACKAGE= krb5 11 12.include <src.opts.mk> 13 14.include "../Makefile.inc" 15 16LIB= otp 17LIBDIR= ${PLUGINSDIR}/preauth 18LDFLAGS=-Wl,--no-undefined 19LIBADD= krb5profile krad verto krb5 k5crypto com_err krb5support m 20 21.PATH: ${KRB5_DIR}/plugins/preauth/otp 22 23SRCS= main.c \ 24 otp_state.c 25 26CFLAGS+=-I${KRB5_DIR}/plugins/preauth/otp \ 27 -I${KRB5_DIR}/include \ 28 -I${KRB5_SRCTOP}/include 29 30.include <bsd.lib.mk> 31