54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.10 2001/12/12 03:18:17 tv Exp $
|
|
|
|
NOLINT= # defined
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
DIST= ${.CURDIR}/../../crypto/dist
|
|
.PATH: ${DIST}/krb4/lib/kadm
|
|
|
|
WARNS?= 1
|
|
|
|
LIB= kadm
|
|
|
|
.if ${USETOOLS} != "yes"
|
|
COMPILEETOBJ!= cd ${.CURDIR}/../libcom_err/compile_et && ${PRINTOBJDIR}
|
|
COMPILE_ET= ${COMPILEETOBJ}/compile_et
|
|
.endif
|
|
|
|
kadm_err.c kadm_err.h: kadm_err.et
|
|
${COMPILE_ET} ${DIST}/krb4/lib/kadm/kadm_err.et
|
|
|
|
ERR_FILES= kadm_err.c
|
|
DPSRCS= kadm_err.h
|
|
|
|
SRCS= \
|
|
kadm_cli_wrap.c \
|
|
kadm_err.c \
|
|
kadm_stream.c \
|
|
kadm_supp.c \
|
|
check_password.c
|
|
|
|
INCS= kadm.h kadm_err.h
|
|
INCSDIR= /usr/include/kerberosIV
|
|
|
|
LIBKRBINC!= cd ${.CURDIR}/../libkrb && ${PRINTOBJDIR}
|
|
|
|
CPPFLAGS+= -I. \
|
|
-I${DIST}/krb4/lib/kadm \
|
|
-I${DIST}/krb4/lib/kdb \
|
|
-I${DIST}/krb4/lib/krb \
|
|
-I${DIST}/openssl/crypto/des \
|
|
-I${DIST}/heimdal/lib/com_err \
|
|
-I${LIBKRBINC} \
|
|
-I${.CURDIR}/../../include/heimdal \
|
|
-I${.CURDIR}/../libroken \
|
|
-I${DIST}/heimdal/lib/roken \
|
|
-DHAVE_CONFIG_H
|
|
|
|
CLEANFILES= ${ERR_FILES} kadm_err.h
|
|
|
|
${SRCS:.c=.o}: kadm_err.h
|
|
|
|
.include <bsd.lib.mk>
|