diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-08-05 22:29:57 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-08-25 20:05:31 -0400 |
commit | 6fd9b0a1c6b076ef1977db1a2ce8b9505b9a3254 (patch) | |
tree | 862b1a0b8ac78ebddea1cbc4eee597ca4acbb241 /testsuite/mk/test.mk | |
parent | 822b0302f3406bb5e916d72c36566322ba900e76 (diff) | |
download | haskell-6fd9b0a1c6b076ef1977db1a2ce8b9505b9a3254.tar.gz |
Drop make build system
Here we at long last remove the `make`-based build system, it having
been replaced with the Shake-based Hadrian build system. Users are
encouraged to refer to the documentation in `hadrian/doc` and this [1]
blog post for details on using Hadrian.
Closes #17527.
[1] https://www.haskell.org/ghc/blog/20220805-make-to-hadrian.html
Diffstat (limited to 'testsuite/mk/test.mk')
-rw-r--r-- | testsuite/mk/test.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/mk/test.mk b/testsuite/mk/test.mk index 4728ab400e..4ce9bbb8a0 100644 --- a/testsuite/mk/test.mk +++ b/testsuite/mk/test.mk @@ -300,7 +300,7 @@ else set_list_broken = endif -# See Note [validate and testsuite speed] in toplevel Makefile. +# See Note [validate and testsuite speed] in `validate` ifneq "$(SPEED)" "" setspeed = -e config.speed="$(SPEED)" else ifeq "$(fast)" "YES" @@ -356,7 +356,7 @@ accept: $(MAKE) accept=YES fast fasttest: - # See Note [validate and testsuite speed] in toplevel Makefile. + # See Note [validate and testsuite speed] in `validate` $(MAKE) SPEED=2 slow slowtest: |