diff options
author | bde <bde@FreeBSD.org> | 1998-08-04 17:13:38 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-08-04 17:13:38 +0000 |
commit | ef03aa72b377ca37d9f7bb5377c11171aa6cc21b (patch) | |
tree | 1bae0184e36c8b11e5319090286acb35b6efe59b /Makefile | |
parent | 9f74da92d2d9619b4a0543b7c6c819cb4eb4959e (diff) | |
download | FreeBSD-src-ef03aa72b377ca37d9f7bb5377c11171aa6cc21b.zip FreeBSD-src-ef03aa72b377ca37d9f7bb5377c11171aa6cc21b.tar.gz |
Fully enable the optimization of not building dependencies unless NOCLEAN
is set. It was disabled in the -j case. See rev.1.173.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.207 1998/08/03 08:28:14 bde Exp $ +# $Id: Makefile,v 1.208 1998/08/04 16:00:47 peter Exp $ # # While porting to the another architecture include the bootstrap instead # of the normal build. @@ -141,7 +141,7 @@ CLEANDIR= cleandir .endif .endif -.if !defined(NOCLEAN) && ${.MAKEFLAGS:M-j} == "" +.if !defined(NOCLEAN) _NODEPEND= true .endif .if defined(_NODEPEND) |