2003-08-01 21:03:41 +04:00
|
|
|
# $NetBSD: Makefile,v 1.22 2003/08/01 17:03:58 lukem Exp $
|
2001-12-12 03:51:00 +03:00
|
|
|
|
|
|
|
NOLINT= # defined
|
2000-12-30 20:21:44 +03:00
|
|
|
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2002-08-19 13:41:27 +04:00
|
|
|
DIST= ${NETBSDSRCDIR}/crypto/dist
|
2001-12-12 03:51:00 +03:00
|
|
|
.PATH: ${DIST}/heimdal/lib/kadm5
|
2000-06-16 23:27:31 +04:00
|
|
|
|
2001-12-12 03:51:00 +03:00
|
|
|
WARNS?= 1
|
2000-06-16 23:27:31 +04:00
|
|
|
|
2000-08-07 02:41:05 +04:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2001-12-12 03:51:00 +03:00
|
|
|
LIB= kadm5srv
|
2000-06-16 23:27:31 +04:00
|
|
|
|
2001-10-31 19:15:00 +03:00
|
|
|
.if ${USETOOLS} != "yes"
|
2003-07-10 14:33:58 +04:00
|
|
|
COMPILEETOBJ!= cd ${NETBSDSRCDIR}/lib/libcom_err/compile_et && ${PRINTOBJDIR}
|
|
|
|
TOOL_COMPILE_ET= ${COMPILEETOBJ}/compile_et
|
2001-09-22 09:39:54 +04:00
|
|
|
.endif
|
2000-06-16 23:27:31 +04:00
|
|
|
|
2003-07-10 14:33:58 +04:00
|
|
|
kadm5_err.c kadm5_err.h: kadm5_err.et ${TOOL_COMPILE_ET}
|
|
|
|
${TOOL_COMPILE_ET} ${DIST}/heimdal/lib/kadm5/kadm5_err.et
|
2000-06-16 23:27:31 +04:00
|
|
|
|
2001-12-12 03:51:00 +03:00
|
|
|
ERR_FILES= kadm5_err.c
|
2003-08-01 21:03:41 +04:00
|
|
|
DPSRCS+= kadm5_err.h
|
|
|
|
CLEANFILES+= kadm5_err.h kadm5_err.c
|
2000-06-16 23:27:31 +04:00
|
|
|
|
2001-02-07 17:06:57 +03:00
|
|
|
SRCS = \
|
|
|
|
acl.c \
|
|
|
|
bump_pw_expire.c \
|
|
|
|
chpass_c.c \
|
|
|
|
chpass_s.c \
|
|
|
|
common_glue.c \
|
|
|
|
context_s.c \
|
|
|
|
create_c.c \
|
|
|
|
create_s.c \
|
|
|
|
delete_c.c \
|
|
|
|
delete_s.c \
|
|
|
|
destroy_c.c \
|
|
|
|
destroy_s.c \
|
|
|
|
ent_setup.c \
|
|
|
|
error.c \
|
|
|
|
flush_c.c \
|
|
|
|
flush_s.c \
|
|
|
|
free.c \
|
|
|
|
get_c.c \
|
|
|
|
get_princs_c.c \
|
|
|
|
get_princs_s.c \
|
|
|
|
get_s.c \
|
|
|
|
init_c.c \
|
|
|
|
init_s.c \
|
|
|
|
keys.c \
|
|
|
|
log.c \
|
|
|
|
marshall.c \
|
|
|
|
modify_c.c \
|
|
|
|
modify_s.c \
|
|
|
|
password_quality.c \
|
|
|
|
privs_c.c \
|
|
|
|
privs_s.c \
|
|
|
|
randkey_c.c \
|
|
|
|
randkey_s.c \
|
|
|
|
rename_c.c \
|
|
|
|
rename_s.c \
|
|
|
|
send_recv.c \
|
|
|
|
server_glue.c \
|
|
|
|
set_keys.c \
|
|
|
|
set_modifier.c \
|
2000-06-16 23:27:31 +04:00
|
|
|
$(ERR_FILES)
|
|
|
|
|
2002-08-19 17:35:05 +04:00
|
|
|
ASN1!= cd ${NETBSDSRCDIR}/lib/libasn1 && ${PRINTOBJDIR}
|
|
|
|
KRB5!= cd ${NETBSDSRCDIR}/lib/libkrb5 && ${PRINTOBJDIR}
|
|
|
|
HDB!= cd ${NETBSDSRCDIR}/lib/libhdb && ${PRINTOBJDIR}
|
2000-06-16 23:27:31 +04:00
|
|
|
|
|
|
|
CPPFLAGS+= -I. \
|
|
|
|
-I${ASN1} \
|
|
|
|
-I${KRB5} \
|
|
|
|
-I${DIST}/heimdal/lib/krb5 \
|
|
|
|
-I${DIST}/heimdal/lib/asn1 \
|
|
|
|
-I${HDB} \
|
|
|
|
-I${DIST}/heimdal/lib/hdb \
|
|
|
|
-I${DIST}/heimdal/lib/asn1 \
|
|
|
|
-I${DIST}/heimdal/lib/com_err \
|
2002-08-19 13:41:27 +04:00
|
|
|
-I${NETBSDSRCDIR}/include/heimdal \
|
|
|
|
-I${NETBSDSRCDIR}/lib/libroken \
|
2000-06-16 23:27:31 +04:00
|
|
|
-I${DIST}/heimdal/lib/roken \
|
|
|
|
-DHAVE_CONFIG_H
|
|
|
|
|
2001-12-12 03:51:00 +03:00
|
|
|
.if ${MKPIC} == "no"
|
2000-08-02 21:37:57 +04:00
|
|
|
CPPFLAGS+= -DNO_DLOPEN
|
|
|
|
.endif
|
|
|
|
|
2000-06-16 23:27:31 +04:00
|
|
|
.include <bsd.lib.mk>
|