summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2015-05-23 00:02:22 +0200
committerThomas Miedema <thomasmiedema@gmail.com>2015-05-30 16:48:35 +0200
commit4c7d1778e0e8ac2eae0f9055580b40e32b6e8c0a (patch)
treec37bb1a26d5d3826d1d5c331b648aca983cc32e3
parent5ead7d182cea63865379f51f42477e735277f97d (diff)
downloadhaskell-4c7d1778e0e8ac2eae0f9055580b40e32b6e8c0a.tar.gz
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]
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index e99cb84817..74bc64193d 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