xref: /freebsd/share/mk/auto.obj.mk (revision b0b1dbdd)
1# $FreeBSD$
2# $Id: auto.obj.mk,v 1.12 2015/12/16 01:57:06 sjg Exp $
3#
4#	@(#) Copyright (c) 2004, Simon J. Gerraty
5#
6#	This file is provided in the hope that it will
7#	be of use.  There is absolutely NO WARRANTY.
8#	Permission to copy, redistribute or otherwise
9#	use this file is hereby granted provided that
10#	the above copyright notice and this notice are
11#	left intact.
12#
13#	Please send copies of changes and bug-fixes to:
14#	sjg@crufty.net
15#
16
17ECHO_TRACE ?= echo
18
19.ifndef Mkdirs
20# A race condition in some versions of mkdir, means that it can bail
21# if another process made a dir that mkdir expected to.
22# We repeat the mkdir -p a number of times to try and work around this.
23# We stop looping as soon as the dir exists.
24# If we get to the end of the loop, a plain mkdir will issue an error.
25Mkdirs= Mkdirs() { \
26	for d in $$*; do \
27		for i in 1 2 3 4 5 6; do \
28			mkdir -p $$d; \
29			test -d $$d && return 0; \
30		done > /dev/null 2>&1; \
31		mkdir $$d || exit $$?; \
32	done; }
33.endif
34
35# if MKOBJDIRS is set to auto (and NOOBJ isn't defined) do some magic...
36# This will automatically create objdirs as needed.
37# Skip it if we are just doing 'clean'.
38.if ${MK_AUTO_OBJ:Uno} == "yes"
39MKOBJDIRS= auto
40.endif
41.if !defined(NOOBJ) && !defined(NO_OBJ) && ${MKOBJDIRS:Uno} == auto
42# Use __objdir here so it is easier to tweak without impacting
43# the logic.
44.if !empty(MAKEOBJDIRPREFIX)
45__objdir?= ${MAKEOBJDIRPREFIX}${.CURDIR}
46.endif
47__objdir?= ${MAKEOBJDIR:Uobj}
48__objdir:= ${__objdir}
49.if ${.OBJDIR:tA} != ${__objdir:tA}
50# We need to chdir, make the directory if needed
51.if !exists(${__objdir}/) && \
52	(${.TARGETS} == "" || ${.TARGETS:Nclean*:N*clean:Ndestroy*} != "")
53# This will actually make it...
54__objdir_made != echo ${__objdir}/; umask ${OBJDIR_UMASK:U002}; \
55        ${ECHO_TRACE} "[Creating objdir ${__objdir}...]" >&2; \
56        ${Mkdirs}; Mkdirs ${__objdir}
57.endif
58# This causes make to use the specified directory as .OBJDIR
59.OBJDIR: ${__objdir}
60.if ${.OBJDIR:tA} != ${__objdir:tA} && ${__objdir_made:Uno:M${__objdir}/*} != ""
61.error could not use ${__objdir}: .OBJDIR=${.OBJDIR}
62.endif
63.endif
64.endif
65