The including makefile's directory is tried first for .include "...".

This commit is contained in:
Ruslan Ermilov 2003-04-30 07:54:39 +00:00
parent 6402d39a2b
commit f7fa0cbd70
4 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# $FreeBSD$
.include "${.CURDIR}/../../Makefile.inc"
.include "../Makefile.inc"
.if exists(${.CURDIR}/../../../lib/Makefile.inc)
.include "${.CURDIR}/../../../lib/Makefile.inc"
.endif

View File

@ -1,5 +1,5 @@
# $FreeBSD$
# $FreeBSD$
BINDIR?= /usr/libexec
.include "${.CURDIR}/../../Makefile.inc"
.include "../Makefile.inc"

View File

@ -2,4 +2,4 @@
BINDIR?= /usr/bin
.include "${.CURDIR}/../../Makefile.inc"
.include "../Makefile.inc"

View File

@ -2,4 +2,4 @@
BINDIR?= /usr/sbin
.include "${.CURDIR}/../../Makefile.inc"
.include "../Makefile.inc"