1# 2# SPDX-License-Identifier: 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 10.include <src.opts.mk> 11 12.include "../Makefile.inc" 13 14LIBDIR= ${PLUGINSDIR}/tls 15SHLIBDIR= ${LIBDIR} 16LIB= k5tls 17LDFLAGS=-Wl,--no-undefined 18LIBADD= krb5 krb5profile krb5support ssl crypto k5crypto com_err sys 19VERSION_MAP= ${.CURDIR}/version.map 20 21SRCS= notls.c \ 22 openssl.c 23 24CFLAGS+=-I${KRB5_DIR}/plugins/tls/k5tls \ 25 -I${KRB5_DIR}/include \ 26 -I${KRB5_SRCTOP}/include 27 28.include <bsd.lib.mk> 29 30.SUFFIXES: .h .c 31 32.PATH: ${KRB5_DIR}/plugins/tls/k5tls 33