mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 03:04:34 +01:00
a726e724d7
Conflicts: lib/libexecinfo/Makefile (unresolved) libexec/rtld-elf/amd64/Makefile.inc (unresolved) sbin/ldconfig/Makefile (unresolved) secure/usr.bin/openssl/Makefile (unresolved) share/keys/Makefile (unresolved) sys/modules/aout/Makefile (deleted) sys/modules/sgx/Makefile (deleted) sys/modules/sgx_linux/Makefile (deleted) usr.sbin/bsdinstall/Makefile (unresolved) usr.sbin/unbound/Makefile (unresolved)
25 lines
487 B
Makefile
25 lines
487 B
Makefile
PACKAGE= kerberos
|
|
|
|
PROG= kdigest
|
|
MAN= kdigest.8
|
|
CFLAGS+= -I${KRB5DIR}/lib/asn1 \
|
|
-I${KRB5DIR}/lib/roken \
|
|
-I${KRB5DIR}/lib/sl -I.
|
|
LIBADD= krb5 heimntlm roken crypto edit sl vers
|
|
SRCS= kdigest.c \
|
|
kdigest-commands.c \
|
|
kdigest-commands.h
|
|
|
|
CFI_OVERRIDE= -fno-sanitize=cfi-icall
|
|
|
|
CLEANFILES= kdigest-commands.h kdigest-commands.c
|
|
|
|
kdigest-commands.h: kdigest-commands.in
|
|
${SLC} ${.ALLSRC:M*.in}
|
|
|
|
kdigest-commands.c: kdigest-commands.h
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${KRB5DIR}/kuser
|