Quiet ``make objlink'' when NOOBJ is defined.

PR:		bin/21142
Submitted by:	Craig Leres <leres@ee.lbl.gov>
This commit is contained in:
Ruslan Ermilov 2002-06-21 07:30:51 +00:00
parent 4e774f7fbe
commit c1c9929e9f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98546

View File

@ -76,7 +76,8 @@ objwarn:
.endif
.endif
.if !target(obj) && !defined(NOOBJ)
.if !defined(NOOBJ)
.if !target(obj)
obj:
@if ! test -d ${CANONICALOBJDIR}/; then \
mkdir -p ${CANONICALOBJDIR}; \
@ -97,6 +98,7 @@ objlink:
echo "No ${CANONICALOBJDIR} to link to - do a make obj."; \
fi
.endif
.endif !defined(NOOBJ)
#
# where would that obj directory be?