diff options
author | simonm <unknown> | 1998-01-13 12:24:28 +0000 |
---|---|---|
committer | simonm <unknown> | 1998-01-13 12:24:28 +0000 |
commit | 7c042349815db6d349586fda9fdcb99460a01e35 (patch) | |
tree | 9cb2985055a175eb876ed97a8615cafd8a5131e3 | |
parent | fbf2e16821d9661d4a086ddb4eaaf31b97f17740 (diff) | |
download | haskell-7c042349815db6d349586fda9fdcb99460a01e35.tar.gz |
[project @ 1998-01-13 12:24:28 by simonm]
Don't include .depend if FAST is defined. This means that
gmake <blah> FAST=YES
is equivalent to the old fastmake.
-rw-r--r-- | mk/boilerplate.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mk/boilerplate.mk b/mk/boilerplate.mk index c8cd897a18..0f78b67daa 100644 --- a/mk/boilerplate.mk +++ b/mk/boilerplate.mk @@ -53,6 +53,8 @@ include $(TOP)/mk/suffix.mk # (Optional) build-specific configuration # +ifndef FAST -include .depend +endif # The dependencies file from the current directory |