1 1.1 elric # $NetBSD: Makefile,v 1.1 2011/04/13 19:16:50 elric Exp $ 2 1.1 elric 3 1.1 elric USE_FORT?= yes # network protocol library 4 1.1 elric 5 1.1 elric NOLINT= # defined 6 1.1 elric 7 1.1 elric .include <bsd.own.mk> 8 1.1 elric .include <${.CURDIR}/../../Makefile.inc> 9 1.1 elric 10 1.1 elric .PATH: ${HEIMDIST}/lib/hdb ${HEIMBASE}/include 11 1.1 elric 12 1.1 elric LIB= hdb 13 1.1 elric 14 1.1 elric LIBDPLIBS+= hx509 ${HEIMBASE}/lib/libhx509 \ 15 1.1 elric crypto ${SSLBASE}/lib/libcrypto \ 16 1.1 elric asn1 ${HEIMBASE}/lib/libasn1 \ 17 1.1 elric com_err ${HEIMBASE}/lib/libcom_err \ 18 1.1 elric roken ${HEIMBASE}/lib/libroken \ 19 1.1 elric wind ${HEIMBASE}/lib/libwind \ 20 1.1 elric heimbase ${HEIMBASE}/lib/libheimbase 21 1.1 elric 22 1.1 elric LDADD+= ${LIBIPC_PIC} 23 1.1 elric 24 1.1 elric HEIMSRCS= hdb_err.et hdb.asn1 25 1.1 elric 26 1.1 elric SRCS= \ 27 1.1 elric common.c \ 28 1.1 elric db.c \ 29 1.1 elric db3.c \ 30 1.1 elric ext.c \ 31 1.1 elric hdb-ldap.c \ 32 1.1 elric hdb.c \ 33 1.1 elric hdb-keytab.c \ 34 1.1 elric hdb-mitdb.c \ 35 1.1 elric keys.c \ 36 1.1 elric keytab.c \ 37 1.1 elric dbinfo.c \ 38 1.1 elric mkey.c \ 39 1.1 elric ndbm.c \ 40 1.1 elric print.c 41 1.1 elric 42 1.1 elric INCSDIR= /usr/include/krb5 43 1.1 elric INCS += hdb.h hdb-protos.h ${COMPILE_ET_INCS} ${ASN1_INCS} 44 1.1 elric 45 1.1 elric CPPFLAGS+= \ 46 1.1 elric -I${HEIMBASE}/include/krb5 \ 47 1.1 elric -I${HEIMDIST}/lib/asn1 \ 48 1.1 elric -I${HEIMDIST}/lib/krb5 \ 49 1.1 elric -DHDB_DB_DIR=\"/var/heimdal\" \ 50 1.1 elric 51 1.1 elric .include <${HEIMBASE}/Makefile.rules.inc> 52 1.1 elric .include <bsd.lib.mk> 53