blob: 1a79b38008634745ea8457523f0d4a764ae67fbf (
plain) (
blame)
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
28
29
|
#
# SPDX-License-Identifier: BSD-2-Clause
#
# Copyright (c) 2025 FreeBSD Foundation
#
# This sofware was developed by Cy Schubert <cy@FreeBSD.org>
# under sponsorship from the FreeBSD Foundation.
#
.include <src.opts.mk>
.include "../Makefile.inc"
LIB= apputils
INTERNALLIB=
LDFLAGS=-Wl,--no-undefined
SRCS= net-server.c \
udppktinfo.c \
udppktinfo.h
CFLAGS+=-I${KRB5_DIR}/lib/apputils \
-I${KRB5_DIR}/include \
-I${KRB5_SRCTOP}/include \
-I${.OBJDIR}
.include <bsd.lib.mk>
.PATH: ${KRB5_DIR}/lib/apputils
|