1# $FreeBSD$ 2# 3# Early setup of MAKEOBJDIR 4# 5# Default format is: /usr/obj/usr/src/[${TARGET}.${TARGET_ARCH}/]bin/sh 6# MAKEOBJDIRPREFIX is /usr/obj 7# OBJROOT is /usr/obj/usr/src/ 8# OBJTOP is /usr/obj/usr/src/[${TARGET}.${TARGET_ARCH}/] 9# MAKEOBJDIR is /usr/obj/usr/src/[${TARGET}.${TARGET_ARCH}/]bin/sh 10# 11# MAKEOBJDIRPREFIX will override the default pattern above and internally 12# set MAKEOBJDIR. If OBJROOT is set then MAKEOBJDIRPREFIX is rooted inside 13# of there. 14# 15# If MK_UNIFIED_OBJDIR is no then OBJROOT will always match OBJTOP. 16# 17# If .MAKE.LEVEL == 0 then the TARGET.TARGET_ARCH is potentially added on. 18# If .MAKE.LEVEL > 0 and MAKEOBJDIRPREFIX is set then it will not get 19# TARGET.TARGET_ARCH added in as it assumes that MAKEOBJDIRPREFIX is 20# nested in the existing OBJTOP with TARGET.TARGET_ARCH in it. 21# 22# The expected OBJDIR is stored in __objdir for auto.obj.mk to use. 23# 24# AUTO_OBJ is opportunistically enabled if the computed .OBJDIR is writable 25# by the current user. Some top-level targets disable this behavior in 26# Makefile.sys.inc. 27# 28 29_default_makeobjdirprefix?= /usr/obj 30_default_makeobjdir= $${.CURDIR:S,^$${SRCTOP},$${OBJTOP},} 31 32.include <bsd.mkopt.mk> 33 34.if ${.MAKE.LEVEL} == 0 || empty(OBJROOT) 35.if ${MK_UNIFIED_OBJDIR} == "no" && ${MK_DIRDEPS_BUILD} == "no" 36# Fall back to historical behavior. 37# We always want to set a default MAKEOBJDIRPREFIX... 38MAKEOBJDIRPREFIX?= ${_default_makeobjdirprefix} 39# but don't enforce TARGET.TARGET_ARCH unless we're at the top-level directory. 40.if ${.CURDIR} == ${SRCTOP} && \ 41 !(defined(TARGET) && defined(TARGET_ARCH) && \ 42 ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && \ 43 !defined(CROSS_BUILD_TESTING)) 44MAKEOBJDIRPREFIX:= ${MAKEOBJDIRPREFIX}${TARGET:D/${TARGET}.${TARGET_ARCH}} 45.endif 46.endif # ${MK_UNIFIED_OBJDIR} == "no" 47 48.if !empty(MAKEOBJDIRPREFIX) 49# put things approximately where they want 50OBJROOT:= ${MAKEOBJDIRPREFIX}${SRCTOP}/ 51MAKEOBJDIRPREFIX= 52# export but do not track 53.export-env MAKEOBJDIRPREFIX 54.endif 55.if empty(MAKEOBJDIR) 56# OBJTOP set below 57MAKEOBJDIR= ${_default_makeobjdir} 58# export but do not track 59.export-env MAKEOBJDIR 60# Expand for our own use 61MAKEOBJDIR:= ${MAKEOBJDIR} 62.endif 63# SB documented at http://www.crufty.net/sjg/docs/sb-tools.htm 64.if !empty(SB) 65SB_OBJROOT?= ${SB}/obj/ 66# this is what we use below 67OBJROOT?= ${SB_OBJROOT} 68.endif 69OBJROOT?= ${_default_makeobjdirprefix}${SRCTOP}/ 70.if ${OBJROOT:M*/} != "" 71OBJROOT:= ${OBJROOT:H:tA}/ 72.else 73OBJROOT:= ${OBJROOT:H:tA}/${OBJROOT:T} 74.endif 75# Must export since OBJDIR will dynamically be based on it 76.export OBJROOT SRCTOP 77.endif 78 79.if ${MK_DIRDEPS_BUILD} == "no" 80.if empty(OBJTOP) 81# SRCTOP == OBJROOT only happens with clever MAKEOBJDIRPREFIX=/. Don't 82# append TARGET.TARGET_ARCH for that case since the user wants to build 83# in the source tree. 84.if ${MK_UNIFIED_OBJDIR} == "yes" && ${SRCTOP} != ${OBJROOT:tA} 85.if defined(TARGET) && defined(TARGET_ARCH) 86OBJTOP:= ${OBJROOT}${TARGET}.${TARGET_ARCH} 87.elif defined(TARGET) && ${.CURDIR} == ${SRCTOP} 88# Not enough information, just use basic OBJDIR. This can happen with some 89# 'make universe' targets or if TARGET is not being used as expected. 90OBJTOP:= ${OBJROOT:H} 91.else 92OBJTOP:= ${OBJROOT}${MACHINE}.${MACHINE_ARCH} 93.endif 94.else 95# TARGET.TARGET_ARCH handled in OBJROOT already. 96OBJTOP:= ${OBJROOT:H} 97.endif # ${MK_UNIFIED_OBJDIR} == "yes" 98.endif # empty(OBJTOP) 99 100# Fixup OBJROOT/OBJTOP if using MAKEOBJDIRPREFIX. 101# This intenionally comes after adding TARGET.TARGET_ARCH so that is truncated 102# away for nested objdirs. This logic also will not trigger if the OBJROOT 103# block above unsets MAKEOBJDIRPREFIX. 104.if !empty(MAKEOBJDIRPREFIX) 105OBJTOP:= ${MAKEOBJDIRPREFIX}${SRCTOP} 106OBJROOT:= ${OBJTOP}/ 107.endif 108 109# Wait to validate MAKEOBJDIR until OBJTOP is set. 110.if defined(MAKEOBJDIR) 111.if ${MAKEOBJDIR:M/*} == "" 112.error Cannot use MAKEOBJDIR=${MAKEOBJDIR}${.newline}Unset MAKEOBJDIR to get default: MAKEOBJDIR='${_default_makeobjdir}' 113.endif 114.endif 115 116# __objdir is the expected .OBJDIR we want to use and that auto.obj.mk will 117# try to create. 118.if !empty(MAKEOBJDIRPREFIX) 119.if ${.CURDIR:M${MAKEOBJDIRPREFIX}/*} != "" 120# we are already in obj tree! 121__objdir= ${.CURDIR} 122.else 123__objdir:= ${MAKEOBJDIRPREFIX}${.CURDIR} 124.endif 125.elif !empty(MAKEOBJDIR) 126__objdir:= ${MAKEOBJDIR} 127.endif 128 129# Try to enable MK_AUTO_OBJ by default if we can write to the __objdir. Only 130# do this if AUTO_OBJ is not disabled by the user, and this is the first make 131# ran. 132.if ${.MAKE.LEVEL} == 0 && \ 133 ${MK_AUTO_OBJ} == "no" && empty(.MAKEOVERRIDES:MMK_AUTO_OBJ) && \ 134 !defined(WITHOUT_AUTO_OBJ) && !make(showconfig) && !make(print-dir) && \ 135 !defined(NO_OBJ) && \ 136 empty(RELDIR:Msys/*/compile/*) 137# Find the last existing directory component and check if we can write to it. 138# If the last component is a symlink then recurse on the new path. 139CheckAutoObj= \ 140DirIsCreatable() { \ 141 if [ -w "$${1}" ]; then \ 142 [ -d "$${1}" ] || return 1; \ 143 return 0; \ 144 fi; \ 145 d="$${1}"; \ 146 IFS=/; \ 147 set -- $${d}; \ 148 unset dir; \ 149 while [ $$\# -gt 0 ]; do \ 150 d="$${1}"; \ 151 shift; \ 152 if [ ! -d "$${dir}$${d}/" ]; then \ 153 if [ -L "$${dir}$${d}" ]; then \ 154 dir="$$(readlink "$${dir}$${d}")/"; \ 155 for d in "$${@}"; do \ 156 dir="$${dir}$${d}/"; \ 157 done; \ 158 ret=0; \ 159 DirIsCreatable "$${dir%/}" || ret=$$?; \ 160 return $${ret}; \ 161 elif [ -e "/$${dir}$${d}" ]; then \ 162 return 1; \ 163 else \ 164 break; \ 165 fi; \ 166 fi; \ 167 dir="$${dir}$${d}/"; \ 168 done; \ 169 [ -w "$${dir}" ] && [ -d "$${dir}" ] && return 0; \ 170 return 1; \ 171}; \ 172CheckAutoObj() { \ 173 if DirIsCreatable "$${1}"; then \ 174 echo yes; \ 175 else \ 176 echo no; \ 177 fi; \ 178} 179.if !empty(__objdir) 180.if ${.CURDIR} == ${__objdir} || \ 181 (exists(${__objdir}) && ${.TARGETS:M*install*} == ${.TARGETS}) 182__objdir_writable?= yes 183.elif empty(__objdir_writable) 184__objdir_writable!= \ 185 ${CheckAutoObj}; CheckAutoObj "${__objdir}" || echo no 186.endif 187.endif 188__objdir_writable?= no 189# Export the decision to sub-makes. 190MK_AUTO_OBJ:= ${__objdir_writable} 191.export MK_AUTO_OBJ 192.elif make(showconfig) 193# Need to export for showconfig internally running make -dg1. It is enabled 194# in sys.mk by default. 195.export MK_AUTO_OBJ 196.endif # ${MK_AUTO_OBJ} == "no" && ... 197 198# Assign this directory as .OBJDIR if possible. 199# 200# The expected OBJDIR already exists, set it as .OBJDIR. 201.if !empty(__objdir) && exists(${__objdir}) 202.OBJDIR: ${__objdir} 203.else 204# The OBJDIR we wanted does not yet exist, ensure we default to safe .CURDIR 205# in case make started with a bogus MAKEOBJDIR, that expanded before OBJTOP 206# was set, that happened to match some unexpected directory. Either 207# auto.obj.mk or bsd.obj.mk will create the directory and fix .OBJDIR later. 208.OBJDIR: ${.CURDIR} 209.endif 210 211# Ensure .OBJDIR=.CURDIR cases have a proper OBJTOP and .OBJDIR 212.if defined(NO_OBJ) || ${__objdir_writable:Uunknown} == "no" || \ 213 ${__objdir} == ${.CURDIR} 214OBJTOP= ${SRCTOP} 215OBJROOT= ${SRCTOP}/ 216# Compare only to avoid an unneeded chdir(2), :tA purposely left out. 217.if ${.OBJDIR} != ${.CURDIR} 218.OBJDIR: ${.CURDIR} 219.endif 220.endif # defined(NO_OBJ) 221 222.endif # ${MK_DIRDEPS_BUILD} == "no" 223