ee3960cba1
Add tne necessary Makefiles and header files to facilitate building MIT KRB5 as part of buildworld. Nothing will build until the WITH_MITKRB5/MK_MITKRB5 option has been plumbed in Makefile.inc1. Before any changes to Makefile.inc1 are made to enable MIT KRB5, additional commits to other affected software will need to be committed. krb5/Makefile was inspired by kerberos5/Makefile. The Makefiles in krb5/util and krb5/lib were inspired by those in lib/libc and in lib/ncurses. Differential revision: https://reviews.freebsd.org/D50695 Sponsored by: The FreeBSD Foundation
32 lines
540 B
Makefile
32 lines
540 B
Makefile
#
|
|
# SPDX-License-Idendifier: BSD-2-Clause
|
|
#
|
|
# Copyright (c) 2025 FreeBSD Foundation
|
|
#
|
|
# This sofware was developed by Cy Schubert <cy@FreeBSD.org>
|
|
# under sponsorship from the FreeBSD Foundation.
|
|
#
|
|
|
|
PACKAGE= krb5
|
|
|
|
PROG= kproplog
|
|
LIBADD= kadm5srv_mit kdb5 gssrpc gssapi_krb5 krb5 k5crypto com_err \
|
|
krb5support sys
|
|
|
|
SRCS= kproplog.c
|
|
|
|
MAN= kproplog.8
|
|
|
|
CFLAGS+=-I${KRB5_DIR}/include \
|
|
-I${KRB5_SRCTOP}/include
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.SUFFIXES: .h .c .man .8
|
|
|
|
.man.8:
|
|
@cp ${.ALLSRC} ${.TARGET}
|
|
|
|
.PATH: ${KRB5_DIR}/kprop \
|
|
${KRB5_DIR}/man
|