blob: 83f48886ee24d44a37b6462989ebdcd3ed402ace (
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
|
# $OpenBSD: bsd.obj.mk,v 1.12 2003/10/28 17:09:33 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} -a ! -d $$dest; then \
mkdir -p $$dest; \
else \
true; \
fi; \
else \
true ; \
dest=$$here/${__objdir} ; \
if test ! -d ${__objdir} ; then \
echo "making $$dest" ; \
mkdir $$dest; \
fi ; \
fi;
. endif
.endif
|