blob: eecb8ead1e2e1f33060481361ffd3dc271bfca20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.2 2001/07/18 20:24:18 deraadt Exp $
KRBDEPTH=../..
.include <${.CURDIR}/../../Makefile.inc>
PROG= kfd
MAN= ${PROG}.8
SRCS= kfd.c
.PATH: ${KRB5SRC}/appl/kf
CFLAGS+=-I${KRB5SRC}/lib/krb5
LDADD+= -lhdb -lkrb5 -lkrb -ldes ${LIBROKEN} -lasn1 -lcrypto -lcom_err -lkafs
.include <bsd.prog.mk>
|