a35f04fba2
Prefer ${SRCTOP}/foo over ${.CURDIR}/../../foo and ${SRCTOP}/usr.bin/foo over ${.CURDIR}/../foo for paths in Makefiles. Differential Revision: https://reviews.freebsd.org/D9932 Sponsored by: Netflix Silence on: arch@ (twice)
18 lines
351 B
Makefile
18 lines
351 B
Makefile
# $FreeBSD$
|
|
|
|
.if !defined(SVNDIR)
|
|
|
|
SVNDIR= ${SRCTOP}/contrib/subversion/subversion
|
|
APRU= ${SRCTOP}/contrib/apr-util
|
|
APR= ${SRCTOP}/contrib/apr
|
|
SQLITE= ${SRCTOP}/contrib/sqlite3
|
|
SERF= ${SRCTOP}/contrib/serf
|
|
|
|
WARNS?= 0 # definitely not ready
|
|
|
|
.if exists(${.CURDIR}/../../../Makefile.inc)
|
|
.include "${.CURDIR}/../../../Makefile.inc"
|
|
.endif
|
|
|
|
.endif
|