diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-05-23 00:02:22 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-05-30 16:48:35 +0200 |
commit | 4c7d1778e0e8ac2eae0f9055580b40e32b6e8c0a (patch) | |
tree | c37bb1a26d5d3826d1d5c331b648aca983cc32e3 /Makefile | |
parent | 5ead7d182cea63865379f51f42477e735277f97d (diff) | |
download | haskell-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]
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |