2000-08-31 03:51:46 +04:00
|
|
|
# $NetBSD: Makefile,v 1.5 2000/08/30 23:51:53 jhawk Exp $
|
2000-06-17 02:46:43 +04:00
|
|
|
DIST= ${.CURDIR}/../../crypto/dist
|
2000-06-16 23:27:31 +04:00
|
|
|
.PATH: ${DIST}/heimdal/lib/kadm5
|
|
|
|
|
|
|
|
WARNS?= 1
|
|
|
|
MKLINT= no
|
|
|
|
|
|
|
|
LIB= kadm5clnt
|
|
|
|
|
2000-08-31 03:51:46 +04:00
|
|
|
COMPILEET!= cd ${.CURDIR}/../libcom_err/compile_et && ${MAKE} print-objdir
|
2000-06-16 23:27:31 +04:00
|
|
|
|
|
|
|
kadm5_err.c kadm5_err.h: kadm5_err.et
|
|
|
|
${COMPILEET}/compile_et ${DIST}/heimdal/lib/kadm5/kadm5_err.et
|
|
|
|
|
|
|
|
ERR_FILES = kadm5_err.c
|
|
|
|
|
|
|
|
SRCS = \
|
|
|
|
chpass_c.c \
|
|
|
|
common_glue.c \
|
|
|
|
create_c.c \
|
|
|
|
delete_c.c \
|
|
|
|
destroy_c.c \
|
|
|
|
flush_c.c \
|
|
|
|
free.c \
|
|
|
|
get_c.c \
|
|
|
|
get_princs_c.c \
|
|
|
|
init_c.c \
|
|
|
|
kadm5_err.c \
|
|
|
|
marshall.c \
|
|
|
|
modify_c.c \
|
|
|
|
privs_c.c \
|
|
|
|
randkey_c.c \
|
|
|
|
rename_c.c \
|
|
|
|
send_recv.c \
|
|
|
|
$(ERR_FILES)
|
|
|
|
|
|
|
|
INCSDIR= /usr/include/kadm5
|
|
|
|
|
2000-08-03 07:53:35 +04:00
|
|
|
INCS= kadm5_err.h admin.h kadm5-protos.h private.h kadm5-private.h
|
2000-06-16 23:27:31 +04:00
|
|
|
|
|
|
|
ASN1!= cd ${.CURDIR}/../libasn1 && ${MAKE} print-objdir
|
|
|
|
KRB5!= cd ${.CURDIR}/../libkrb5 && ${MAKE} print-objdir
|
|
|
|
HDB!= cd ${.CURDIR}/../libhdb && ${MAKE} print-objdir
|
|
|
|
|
|
|
|
CPPFLAGS+= -I. \
|
|
|
|
-I${ASN1} \
|
|
|
|
-I${KRB5} \
|
|
|
|
-I${DIST}/heimdal/lib/krb5 \
|
|
|
|
-I${DIST}/heimdal/lib/asn1 \
|
|
|
|
-I${DIST}/openssl/crypto/rc4 \
|
|
|
|
-I${DIST}/openssl/crypto/des \
|
|
|
|
-I${HDB} \
|
|
|
|
-I${DIST}/heimdal/lib/hdb \
|
|
|
|
-I${DIST}/heimdal/lib/asn1 \
|
|
|
|
-I${DIST}/heimdal/lib/com_err \
|
|
|
|
-I${.CURDIR}/../../include/heimdal \
|
|
|
|
-I${.CURDIR}/../libroken \
|
|
|
|
-I${DIST}/heimdal/lib/roken \
|
|
|
|
-DHAVE_CONFIG_H
|
|
|
|
|
|
|
|
$(SRCS:.c=.o): kadm5_err.h
|
|
|
|
|
|
|
|
CLEANFILES = kadm5_err.h kadm5_err.c
|
|
|
|
|
2000-06-21 09:43:50 +04:00
|
|
|
# Prevent collision with old MIT Kerberos includes -- require manual
|
|
|
|
# intervention of the operator.
|
|
|
|
.BEGIN:
|
|
|
|
.ifmake includes
|
|
|
|
@if [ -f ${DESTDIR}${INCSDIR}/kadm_err.h ]; then \
|
|
|
|
echo "Error: you must first remove the MIT headers from ${DESTDIR}${INCSDIR}" >&2; \
|
|
|
|
false; \
|
|
|
|
fi
|
|
|
|
.endif
|
|
|
|
|
2000-06-16 23:27:31 +04:00
|
|
|
.include <bsd.lib.mk>
|