blob: 89867d1e3d9634328d02e0fc1cfd19cd6b8913b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $OpenBSD: Makefile,v 1.3 2001/07/18 20:24:18 deraadt Exp $
KRBDEPTH=../..
.include <${.CURDIR}/../../Makefile.inc>
PROG= hprop
MAN= ${PROG}.8
SRCS= hprop.c mit_dump.c v4_dump.c hprop.h kadb.h
.PATH: ${KRB5SRC}/kdc
CFLAGS+=-I${KRB5SRC}/lib/krb5 -I${KRB5SRC}/lib/kadm5
LDADD+= -lhdb -lkadm5srv -lkrb5 -lkdb -lkrb -lkdb ${LIBROKEN} -lasn1 -lcrypto \
-lcom_err -lkafs
.include <bsd.prog.mk>
|