2015-06-13 19:20:56 +00:00
|
|
|
# $FreeBSD$
|
2016-01-25 18:16:41 +00:00
|
|
|
# $Id: auto.obj.mk,v 1.12 2015/12/16 01:57:06 sjg Exp $
|
2012-08-22 19:25:57 +00:00
|
|
|
#
|
|
|
|
# @(#) Copyright (c) 2004, Simon J. Gerraty
|
|
|
|
#
|
|
|
|
# This file is provided in the hope that it will
|
|
|
|
# be of use. There is absolutely NO WARRANTY.
|
|
|
|
# Permission to copy, redistribute or otherwise
|
|
|
|
# use this file is hereby granted provided that
|
|
|
|
# the above copyright notice and this notice are
|
|
|
|
# left intact.
|
|
|
|
#
|
|
|
|
# Please send copies of changes and bug-fixes to:
|
|
|
|
# sjg@crufty.net
|
|
|
|
#
|
|
|
|
|
|
|
|
ECHO_TRACE ?= echo
|
|
|
|
|
|
|
|
.ifndef Mkdirs
|
|
|
|
# A race condition in some versions of mkdir, means that it can bail
|
|
|
|
# if another process made a dir that mkdir expected to.
|
|
|
|
# We repeat the mkdir -p a number of times to try and work around this.
|
|
|
|
# We stop looping as soon as the dir exists.
|
|
|
|
# If we get to the end of the loop, a plain mkdir will issue an error.
|
|
|
|
Mkdirs= Mkdirs() { \
|
|
|
|
for d in $$*; do \
|
|
|
|
for i in 1 2 3 4 5 6; do \
|
|
|
|
mkdir -p $$d; \
|
|
|
|
test -d $$d && return 0; \
|
|
|
|
done > /dev/null 2>&1; \
|
|
|
|
mkdir $$d || exit $$?; \
|
|
|
|
done; }
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# if MKOBJDIRS is set to auto (and NOOBJ isn't defined) do some magic...
|
|
|
|
# This will automatically create objdirs as needed.
|
|
|
|
# Skip it if we are just doing 'clean'.
|
2014-11-21 19:56:27 +00:00
|
|
|
.if ${MK_AUTO_OBJ:Uno} == "yes"
|
|
|
|
MKOBJDIRS= auto
|
|
|
|
.endif
|
2012-08-22 19:25:57 +00:00
|
|
|
.if !defined(NOOBJ) && !defined(NO_OBJ) && ${MKOBJDIRS:Uno} == auto
|
|
|
|
# Use __objdir here so it is easier to tweak without impacting
|
|
|
|
# the logic.
|
2016-01-25 18:16:41 +00:00
|
|
|
.if !empty(MAKEOBJDIRPREFIX)
|
2017-04-18 23:59:15 +00:00
|
|
|
.if ${.CURDIR:M${MAKEOBJDIRPREFIX}/*} != ""
|
|
|
|
# we are already in obj tree!
|
|
|
|
__objdir?= ${.CURDIR}
|
|
|
|
.endif
|
2015-06-10 13:14:24 +00:00
|
|
|
__objdir?= ${MAKEOBJDIRPREFIX}${.CURDIR}
|
|
|
|
.endif
|
|
|
|
__objdir?= ${MAKEOBJDIR:Uobj}
|
2016-01-25 18:16:41 +00:00
|
|
|
__objdir:= ${__objdir}
|
|
|
|
.if ${.OBJDIR:tA} != ${__objdir:tA}
|
2012-08-22 19:25:57 +00:00
|
|
|
# We need to chdir, make the directory if needed
|
|
|
|
.if !exists(${__objdir}/) && \
|
|
|
|
(${.TARGETS} == "" || ${.TARGETS:Nclean*:N*clean:Ndestroy*} != "")
|
|
|
|
# This will actually make it...
|
|
|
|
__objdir_made != echo ${__objdir}/; umask ${OBJDIR_UMASK:U002}; \
|
|
|
|
${ECHO_TRACE} "[Creating objdir ${__objdir}...]" >&2; \
|
|
|
|
${Mkdirs}; Mkdirs ${__objdir}
|
|
|
|
.endif
|
|
|
|
# This causes make to use the specified directory as .OBJDIR
|
|
|
|
.OBJDIR: ${__objdir}
|
2017-11-04 21:02:26 +00:00
|
|
|
.if ${.OBJDIR:tA} != ${__objdir:tA}
|
|
|
|
# we did not get what we want - do we care?
|
|
|
|
.if ${__objdir_made:Uno:M${__objdir}/*} != ""
|
2017-04-15 01:52:49 +00:00
|
|
|
# watch out for __objdir being relative path
|
|
|
|
.if !(${__objdir:M/*} == "" && ${.OBJDIR:tA} == ${${.CURDIR}/${__objdir}:L:tA})
|
2015-06-13 19:20:56 +00:00
|
|
|
.error could not use ${__objdir}: .OBJDIR=${.OBJDIR}
|
2012-08-22 19:25:57 +00:00
|
|
|
.endif
|
|
|
|
.endif
|
2017-11-04 21:02:26 +00:00
|
|
|
# apparently we can live with it
|
|
|
|
# make sure we know what we have
|
|
|
|
.OBJDIR: ${.CURDIR}
|
|
|
|
.endif
|
2012-08-22 19:25:57 +00:00
|
|
|
.endif
|
2017-04-15 01:52:49 +00:00
|
|
|
.endif
|