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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114283
4 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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