2e00400b7f
is set (and MAKEOBJDIR[PREFIX] is not in use). This permits multiple hosts to compile hostprogs (not just src/tools) for a given target without colliding with each other. Currently restricted only to new toolchain builds, as this requires a new make(1) in order to function properly.
99 lines
2.3 KiB
Makefile
99 lines
2.3 KiB
Makefile
# $NetBSD: bsd.obj.mk,v 1.32 2001/11/11 23:19:14 tv Exp $
|
|
|
|
.if !target(__initialized_obj__)
|
|
__initialized_obj__:
|
|
.include <bsd.own.mk>
|
|
|
|
__curdir:= ${.CURDIR}
|
|
|
|
.if ${MKOBJ} == "no"
|
|
obj:
|
|
.else
|
|
.if defined(MAKEOBJDIRPREFIX) || defined(MAKEOBJDIR)
|
|
.if defined(MAKEOBJDIRPREFIX)
|
|
__objdir:= ${MAKEOBJDIRPREFIX}${.CURDIR}
|
|
.else
|
|
__objdir:= ${MAKEOBJDIR}
|
|
.endif
|
|
# MAKEOBJDIR and MAKEOBJDIRPREFIX are env variables supported
|
|
# by make(1). We simply mkdir -p the specified path.
|
|
# If that fails - we do a mkdir to get the appropriate error message
|
|
# before bailing out.
|
|
obj:
|
|
@if [ ! -d ${__objdir} ]; then \
|
|
mkdir -p ${__objdir}; \
|
|
if [ ! -d ${__objdir} ]; then \
|
|
mkdir ${__objdir}; exit 1; \
|
|
fi; \
|
|
echo "${__curdir} -> ${__objdir}"; \
|
|
fi
|
|
.else
|
|
PAWD?= /bin/pwd
|
|
|
|
__objdir= obj${OBJMACHINE:D.${MACHINE}}
|
|
|
|
.if defined(USR_OBJMACHINE)
|
|
__usrobjdir= ${BSDOBJDIR}.${MACHINE}
|
|
__usrobjdirpf=
|
|
.else
|
|
__usrobjdir= ${BSDOBJDIR}
|
|
__usrobjdirpf= ${OBJMACHINE:D.${MACHINE}}
|
|
.endif
|
|
|
|
.if defined(OBJMACHINE) && defined(OBJHOSTMACHINE)
|
|
# In case .CURDIR has been twiddled by a .mk file and is now relative,
|
|
# make it absolute again.
|
|
.if ${.CURDIR:M/*} == ""
|
|
.CURDIR!= ${PAWD}
|
|
.endif
|
|
|
|
__objdir:= ${__objdir}.${HOST_OSTYPE}
|
|
__usrobjdirpf:= ${__usrobjdirpf}.${HOST_OSTYPE}
|
|
.OBJDIR: ${__objdir}
|
|
.endif
|
|
|
|
obj:
|
|
@cd ${__curdir}; \
|
|
here=`${PAWD}`/; subdir=$${here#${BSDSRCDIR}/}; \
|
|
if [ "$$here" != "$$subdir" ]; then \
|
|
if [ ! -d ${__usrobjdir} ]; then \
|
|
echo "BSDOBJDIR ${__usrobjdir} does not exist, bailing..."; \
|
|
exit 1; \
|
|
fi; \
|
|
subdir=$${subdir%/}; \
|
|
dest=${__usrobjdir}/$$subdir${__usrobjdirpf}; \
|
|
if [ -h $${here}${__objdir} ]; then \
|
|
curtarg=`ls -ld $${here}${__objdir} | awk '{print $$NF}'` ; \
|
|
if [ "$$curtarg" = "$$dest" ]; then \
|
|
: ; \
|
|
else \
|
|
echo "$${here}${__objdir} -> $$dest"; \
|
|
rm -rf ${__objdir}; \
|
|
ln -s $$dest ${__objdir}; \
|
|
fi; \
|
|
else \
|
|
echo "$${here}${__objdir} -> $$dest"; \
|
|
rm -rf ${__objdir}; \
|
|
ln -s $$dest ${__objdir}; \
|
|
fi; \
|
|
if [ ! -d $$dest ]; then \
|
|
mkdir -p $$dest; \
|
|
else \
|
|
true; \
|
|
fi; \
|
|
else \
|
|
true ; \
|
|
dest=$${here}${__objdir} ; \
|
|
if [ ! -d ${__objdir} ] || [ -h ${__objdir} ]; then \
|
|
echo "making $$dest" ; \
|
|
rm -f ${__objdir}; \
|
|
mkdir $$dest; \
|
|
fi ; \
|
|
fi;
|
|
.endif
|
|
.endif
|
|
|
|
print-objdir:
|
|
@echo ${.OBJDIR}
|
|
.endif
|