1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-22 11:17:19 +00:00

Correct spelling of NOOBJDIR (I mistakenly wrote NOOBJ).

Closes PR#1451 (Ph. Charnier <charnier@xp11.frmug.org>) and
PR#1453 (Peter Mutsaers <plm@xs4all.nl>)
This commit is contained in:
Peter Wemm 1996-08-07 13:21:43 +00:00
parent aea6ddfd4f
commit e326fc73b9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17466

View File

@ -1,5 +1,5 @@
# #
# $Id: Makefile,v 1.92 1996/08/03 06:44:46 jkh Exp $ # $Id: Makefile,v 1.93 1996/08/03 13:00:35 jkh Exp $
# #
# Make command line options: # Make command line options:
# -DCLOBBER will remove /usr/include # -DCLOBBER will remove /usr/include
@ -145,20 +145,17 @@ world:
.if defined(NOCLEAN) .if defined(NOCLEAN)
@echo "Not cleaning anything! I sure hope you know what you are doing!" @echo "Not cleaning anything! I sure hope you know what you are doing!"
.else .else
.if defined(NOCLEANDIR) cd ${.CURDIR} && ${MAKE} ${CLEANDIR}
cd ${.CURDIR} && ${MAKE} clean
.else
cd ${.CURDIR} && ${MAKE} cleandir
.endif .endif
.endif .endif
@echo @echo
.if !defined(NOOBJ) .if !defined(NOOBJDIR)
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo " Rebuilding the obj tree" @echo " Rebuilding the obj tree"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
cd ${.CURDIR} && ${MAKE} obj cd ${.CURDIR} && ${MAKE} obj
.endif
@echo @echo
.endif
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"
@echo " Rebuilding bootstrap tools" @echo " Rebuilding bootstrap tools"
@echo "--------------------------------------------------------------" @echo "--------------------------------------------------------------"