blob: 50cbdcd8c1b5a3a5b104f6dc582d888795abc7b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.5 2003/05/17 01:31:21 hin Exp $
KRBDEPTH=../..
.include <${.CURDIR}/../../Makefile.inc>
PROG= pagsh
.PATH: ${KRB5SRC}/appl/afsutil
CFLAGS+=-I${KRB5SRC}/lib/roken
DPADD+= ${LIBKRB5} ${LIBDES} ${LIBKAFS} ${LIBKRB} ${LIBASN1} ${LIBCRYPTO} \
${LIBCOM_ERR}
LDADD+= -lkrb5 -ldes ${LIBROKEN} -lasn1 -lcrypto -lcom_err
.include <bsd.prog.mk>
|