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 14LIB= apputils 15INTERNALLIB= 16LDFLAGS=-Wl,--no-undefined 17 18SRCS= net-server.c \ 19 udppktinfo.c \ 20 udppktinfo.h 21 22CFLAGS+=-I${KRB5_DIR}/lib/apputils \ 23 -I${KRB5_DIR}/include \ 24 -I${KRB5_SRCTOP}/include \ 25 -I${.OBJDIR} 26 27.include <bsd.lib.mk> 28 29.PATH: ${KRB5_DIR}/lib/apputils 30