Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones

Also, use :H where possible/sensical to manipulate .CURDIR-relative paths

This simplifies pathing in make/displayed output.

MFC after:	1 week
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Enji Cooper 2017-03-01 04:35:21 +00:00
parent 450ba47a5d
commit 40a54564e4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=314468
3 changed files with 5 additions and 5 deletions

View file

@ -1,3 +1,3 @@
# $FreeBSD$
.include "${.CURDIR}/../../Makefile.inc"
.include "${SRCTOP}/usr.sbin/Makefile.inc"

View file

@ -1,6 +1,6 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../contrib/tzcode/zic
.PATH: ${SRCTOP}/contrib/tzcode/zic
PROG= zdump
MAN= zdump.8
@ -8,7 +8,7 @@ SRCS= zdump.c ialloc.c scheck.c
CFLAGS+= -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -DSTD_INSPIRED -DPCTS
CFLAGS+= -DHAVE_LONG_DOUBLE -DTZDIR=\"${SHAREDIR}/zoneinfo\" -Demkdir=mkdir
CFLAGS+= -I${.CURDIR}/.. -I${.CURDIR}/../../../contrib/tzcode/stdtime
CFLAGS+= -I${.CURDIR:H} -I${SRCTOP}/contrib/tzcode/stdtime
WARNS?= 2

View file

@ -1,6 +1,6 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../contrib/tzcode/zic
.PATH: ${SRCTOP}/contrib/tzcode/zic
PROG= zic
MAN= zic.8
@ -9,7 +9,7 @@ SRCS= zic.c ialloc.c scheck.c
CFLAGS+= -DTM_GMTOFF=tm_gmtoff -DTM_ZONE=tm_zone -DSTD_INSPIRED -DPCTS
CFLAGS+= -DHAVE_LONG_DOUBLE -DTZDIR=\"${SHAREDIR}/zoneinfo\" -Demkdir=mkdir
CFLAGS+= -DHAVE_STRERROR -DHAVE_UNISTD_H
CFLAGS+= -I${.CURDIR}/.. -I${.CURDIR}/../../../contrib/tzcode/stdtime
CFLAGS+= -I${.CURDIR:H} -I${SRCTOP}/contrib/tzcode/stdtime
WARNS?= 2