Home | History | Annotate | Line # | Download | only in libhdb
      1  1.6  riastrad # $NetBSD: Makefile,v 1.6 2023/10/11 12:34:42 riastradh 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.3     joerg 		krb5		${HEIMBASE}/lib/libkrb5		\
     17  1.1     elric 		asn1		${HEIMBASE}/lib/libasn1		\
     18  1.1     elric 		com_err		${HEIMBASE}/lib/libcom_err	\
     19  1.1     elric 		roken		${HEIMBASE}/lib/libroken	\
     20  1.1     elric 		wind		${HEIMBASE}/lib/libwind		\
     21  1.6  riastrad 		heimbase	${HEIMBASE}/lib/libheimbase	\
     22  1.6  riastrad 		sqlite3		${NETBSDSRCDIR}/external/public-domain/sqlite/lib
     23  1.1     elric 
     24  1.1     elric HEIMSRCS= hdb_err.et hdb.asn1
     25  1.4  christos ASN1_OPTS.hdb.asn1+= --one-code-file --sequence=HDB-Ext-KeySet --sequence=Keys
     26  1.1     elric 
     27  1.1     elric SRCS=			\
     28  1.1     elric 	common.c	\
     29  1.1     elric 	db.c		\
     30  1.1     elric 	db3.c		\
     31  1.4  christos 	dbinfo.c	\
     32  1.1     elric 	ext.c		\
     33  1.4  christos 	hdb-keytab.c	\
     34  1.1     elric 	hdb-ldap.c	\
     35  1.4  christos 	hdb-mitdb.c	\
     36  1.4  christos 	hdb-sqlite.c	\
     37  1.1     elric 	hdb.c		\
     38  1.4  christos 	hdb_err.c	\
     39  1.1     elric 	keys.c		\
     40  1.1     elric 	keytab.c	\
     41  1.1     elric 	mkey.c		\
     42  1.1     elric 	ndbm.c		\
     43  1.1     elric 	print.c
     44  1.1     elric 
     45  1.1     elric INCSDIR= /usr/include/krb5
     46  1.1     elric INCS += hdb.h hdb-protos.h ${COMPILE_ET_INCS} ${ASN1_INCS}
     47  1.1     elric 
     48  1.1     elric CPPFLAGS+=				\
     49  1.1     elric 	-I${HEIMBASE}/include/krb5	\
     50  1.1     elric 	-I${HEIMDIST}/lib/asn1		\
     51  1.1     elric 	-I${HEIMDIST}/lib/krb5		\
     52  1.5       mrg 	-I${HEIMDIST}/lib		\
     53  1.5       mrg 	-DHDB_DB_DIR=\"/var/heimdal\"
     54  1.1     elric 
     55  1.1     elric .include <${HEIMBASE}/Makefile.rules.inc>
     56  1.1     elric .include <bsd.lib.mk>
     57