blob: e685ddb078187f22c5a433d7031d5d2b32b9c70f (
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
|
# $OpenBSD: Makefile.inc,v 1.2 1996/06/02 14:41:57 niklas Exp $
CFLAGS+=-I${.CURDIR}/../include
BINDIR?=/usr/sbin
.if defined(OBJMACHINE)
__objdir= obj.${MACHINE}
.else
__objdir= obj
.endif
.if exists(${.CURDIR}/../mk_cmds/${__objdir})
MK_CMDS=${.CURDIR}/../mk_cmds/${__objdir}/mk_cmds
.else
MK_CMDS=${.CURDIR}/../mk_cmds/mk_cmds
.endif
.if exists(${.CURDIR}/../compile_et/${__objdir})
COMPILE_ET=${.CURDIR}/../compile_et/${__objdir}/compile_et
.else
COMPILE_ET=${.CURDIR}/../compile_et/compile_et
.endif
.if exists(${.CURDIR}/../com_err/${__objdir})
COM_ERR=-L${.CURDIR}/../com_err/${__objdir} -lcom_err_pic
.else
COM_ERR=-L${.CURDIR}/../com_err -lcom_err_pic
.endif
|