blob: a32e6f4dd3113498f935173f403b06d745987125 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $OpenBSD: Makefile.inc,v 1.12 2001/05/03 19:21:51 hin Exp $
KRBDIR = ${.CURDIR}/${KRBDEPTH}
KRBSRC = ${.CURDIR}/${KRBDEPTH}/src
CFLAGS += -DHAVE_CONFIG_H -DBINDIR=\"/usr/bin\" -DSBINDIR=\"/usr/sbin\" \
-I${DESTDIR}/usr/include/kerberosIV \
-I${KRBSRC}/include -I${KRBSRC}/lib/roken \
-I${KRBDIR}/lib/roken -I${KRBSRC}/lib/sl
LIBROKEN= -L${KRBDEPTH}/lib/roken -lroken
LIBSL = -L${KRBDEPTH}/lib/sl -lsl
.PATH: ${KRBSRC}/man
COMPILE_ET = /usr/bin/compile_et
.if (${MACHINE_ARCH} != "mips")
COM_ERR= -lcom_err_pic
.else
COM_ERR= -lcom_err
.endif
|