1 # $NetBSD: Makefile,v 1.5 2023/06/19 23:56:55 mrg Exp $ 2 3 USE_FORT?= yes # cryptographic software 4 5 NOLINT= 6 7 .include <bsd.own.mk> 8 .include <${.CURDIR}/../../Makefile.inc> 9 10 .PATH: ${HEIMDIST}/lib/ntlm ${HEIMBASE}/include 11 12 LIB= heimntlm 13 14 LIBDPLIBS+= asn1 ${.CURDIR}/../libasn1 \ 15 com_err ${.CURDIR}/../libcom_err \ 16 crypto ${SSLBASE}/lib/libcrypto \ 17 krb5 ${.CURDIR}/../libkrb5 \ 18 roken ${.CURDIR}/../libroken \ 19 wind ${.CURDIR}/../libwind 20 21 HEIMSRCS= ntlm_err.et ntlm.c 22 23 CPPFLAGS+= \ 24 -I${HEIMDIST}/lib 25 26 INCS= heimntlm.h heimntlm-protos.h ${COMPILE_ET_INCS} 27 28 INCSDIR= /usr/include/krb5 29 30 COPTS.ntlm.c+= -Wno-error=deprecated-declarations 31 32 .include <${HEIMBASE}/Makefile.rules.inc> 33 .include <bsd.lib.mk> 34