19 lines
377 B
Makefile
19 lines
377 B
Makefile
# $NetBSD: Makefile.inc,v 1.3 2000/05/06 15:05:15 sjg Exp $
|
|
|
|
.ifndef ABSTOP
|
|
ABSTOP!= cd ${.PARSEDIR}; pwd
|
|
|
|
.if (${.PARSEDIR} == ${.CURDIR})
|
|
RELTOP:= .
|
|
.else
|
|
RELTOP:= ${.PARSEDIR:S,^${.CURDIR},,}
|
|
.endif
|
|
|
|
KERNSRCDIR:=${ABSTOP}/sys
|
|
|
|
# you can set BSD{SRC,OBJ}DIR in Makefile.local.inc
|
|
.if exists(${ABSTOP}/Makefile.local.inc)
|
|
.include "${ABSTOP}/Makefile.local.inc"
|
|
.endif
|
|
.endif
|