diff options
author | gad <gad@FreeBSD.org> | 2004-02-20 02:10:35 +0000 |
---|---|---|
committer | gad <gad@FreeBSD.org> | 2004-02-20 02:10:35 +0000 |
commit | fd20be1aef6d1bfe307fdad37a1ff4dee3ed08c8 (patch) | |
tree | d04e444a3bd72d3d78f3fb68c015f45f417097ef | |
parent | 6562bf3d4252620d282e9c4abe2ce3f4dd4ad38c (diff) | |
download | FreeBSD-src-fd20be1aef6d1bfe307fdad37a1ff4dee3ed08c8.zip FreeBSD-src-fd20be1aef6d1bfe307fdad37a1ff4dee3ed08c8.tar.gz |
Change the 'realclean' target name to be 'cleanworld', to match other
targets like buildworld, installworld.
Suggested by: obrien
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -104,7 +104,7 @@ buildworld: upgrade_checks .endif # -# This 'realclean' target is not included in TGTS, because it is not a +# This 'cleanworld' target is not included in TGTS, because it is not a # recursive target. All of the work for it is done right here. It is # expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be # created by bsd.obj.mk, except that we don't want to .include that file @@ -118,7 +118,7 @@ buildworld: upgrade_checks # needed to correctly handle all the possible situations. # BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR} -realclean: +cleanworld: .if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR} .if exists(${BW_CANONICALOBJDIR}/) -rm -rf ${BW_CANONICALOBJDIR}/* |