[commit: ghc] master: Build system: remove toplevel target `fast` (4c7d177)
git at git.haskell.org
git at git.haskell.org
Sat May 30 15:08:25 UTC 2015
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/4c7d1778e0e8ac2eae0f9055580b40e32b6e8c0a/ghc
>---------------------------------------------------------------
commit 4c7d1778e0e8ac2eae0f9055580b40e32b6e8c0a
Author: Thomas Miedema <thomasmiedema at gmail.com>
Date: Sat May 23 00:02:22 2015 +0200
Build system: remove toplevel target `fast`
Remove the recently introduced `fast` synonym for `fasttest`, because in
the subdirectories `make fast` already means `make all FAST=YES`.
[skip ci]
>---------------------------------------------------------------
4c7d1778e0e8ac2eae0f9055580b40e32b6e8c0a
Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index e99cb84..74bc641 100644
--- a/Makefile
+++ b/Makefile
@@ -53,7 +53,7 @@ endif
endif
# No need to update makefiles for these targets:
-REALGOALS=$(filter-out binary-dist binary-dist-prep bootstrapping-files framework-pkg clean clean_% distclean maintainer-clean show echo help test fulltest fast fasttest,$(MAKECMDGOALS))
+REALGOALS=$(filter-out binary-dist binary-dist-prep bootstrapping-files framework-pkg clean clean_% distclean maintainer-clean show echo help test fulltest fasttest,$(MAKECMDGOALS))
# configure touches certain files even if they haven't changed. This
# can mean a lot of unnecessary recompilation after a re-configure, so
@@ -118,8 +118,8 @@ endif
endif
-.PHONY: fasttest fast
-fasttest fast:
+.PHONY: fasttest
+fasttest:
$(MAKE) -C testsuite/tests CLEANUP=1 OUTPUT_SUMMARY=../../testsuite_summary.txt fast
.PHONY: fulltest test
More information about the ghc-commits
mailing list