blob: b791957bc3aec3ca7c7cc5fb476fda7f659e27ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $OpenBSD: Makefile,v 1.6 2003/05/11 20:54:39 mho Exp $
KRBDEPTH=../..
.include <${.CURDIR}/../../Makefile.inc>
INCLUDE_FILES= ${KRB5SRC}/lib/hdb/{hdb.h,hdb-protos.h,hdb-private.h} \
hdb_err.h hdb_asn1.h
includes: hdb_err.h hdb_asn1.h
LIB= hdb
NOPIC=
NOPROFILE=
ASN1_SRC = asn1_Key.c asn1_Event.c asn1_HDBFlags.c asn1_hdb_entry.c \
asn1_Salt.c hdb_asn1.h asn1_GENERATION.c
SRCS= ${ASN1_SRC} \
keytab.c \
hdb.c \
common.c \
db.c \
mkey.c \
ndbm.c \
print.c \
hdb_err.c \
hdb_err.h
${ASN1_SRC}: ${KRB5SRC}/lib/hdb/hdb.asn1
asn1_compile ${KRB5SRC}/lib/hdb/hdb.asn1 hdb_asn1
for f in *.x; do mv $$f `echo $$f | sed s,.x$$,.c,g`; done
CLEANFILES+= ${ASN1_SRC} ${ASN1_SRC:.c=.x} hdb_err.[ch] \
hdb_asn1.[ch] ans1_files asn1.h asn1_files
CFLAGS+=-I${KRB5SRC}/lib/hdb -I${KRB5SRC}/lib/asn1 -I../asn1 -I. -I../krb5
.PATH: ${KRB5SRC}/lib/hdb
hdb_err.c hdb_err.h: ${KRB5SRC}/lib/hdb/hdb_err.et
compile_et ${KRB5SRC}/lib/hdb/hdb_err.et
.include <bsd.lib.mk>
|