blob: f5937698bf82d7e64821baa36ce66ab19cf8c28e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# $OpenBSD: bsd.obj.mk,v 1.13 2007/05/01 08:31:13 espie Exp $
# $NetBSD: bsd.obj.mk,v 1.9 1996/04/10 21:08:05 thorpej Exp $
.if !target(obj)
. if defined(NOOBJ)
obj:
. else
. if defined(MAKEOBJDIR)
__baseobjdir= ${MAKEOBJDIR}
. else
__baseobjdir= obj
. endif
. if defined(OBJMACHINE)
__objdir= ${__baseobjdir}.${MACHINE}
. else
__objdir= ${__baseobjdir}
. endif
. if defined(USR_OBJMACHINE)
__usrobjdir= ${BSDOBJDIR}.${MACHINE}
__usrobjdirpf=
. else
__usrobjdir= ${BSDOBJDIR}
. if defined(OBJMACHINE)
__usrobjdirpf= .${MACHINE}
. else
__usrobjdirpf=
. endif
. endif
_SUBDIRUSE:
obj! _SUBDIRUSE
@cd ${.CURDIR}; \
here=`/bin/pwd`; bsdsrcdir=`cd ${BSDSRCDIR}; /bin/pwd`; \
subdir=$${here#$${bsdsrcdir}/}; \
if test $$here != $$subdir ; then \
dest=${__usrobjdir}/$$subdir${__usrobjdirpf} ; \
echo "$$here/${__objdir} -> $$dest"; \
if test ! -L ${__objdir} -o \
X`readlink ${__objdir}` != X$$dest; \
then \
if test -e ${__objdir}; then rm -rf ${__objdir}; fi; \
ln -sf $$dest ${__objdir}; \
fi; \
if test -d ${__usrobjdir}; then \
test -d $$dest || mkdir -p $$dest; \
else \
if test -e ${__usrobjdir}; then \
echo "${__usrobjdir} is not a directory"; \
else \
echo "${__usrobjdir} does not exist"; \
fi; \
fi; \
else \
true ; \
dest=$$here/${__objdir} ; \
if test ! -d ${__objdir} ; then \
echo "making $$dest" ; \
mkdir $$dest; \
fi ; \
fi;
. endif
.endif
|