diff options
author | igloo <unknown> | 2004-07-19 22:11:54 +0000 |
---|---|---|
committer | igloo <unknown> | 2004-07-19 22:11:54 +0000 |
commit | 805e7047200f582cd5936456162932fbb2a8ed1b (patch) | |
tree | 62e86c02ee906fd1a75d4dc9cae344196a1bd25f /testsuite/Makefile | |
parent | 6aa59ddfa3e6666e4864a58876e5eb04df4bc20f (diff) | |
download | haskell-805e7047200f582cd5936456162932fbb2a8ed1b.tar.gz |
[project @ 2004-07-19 22:11:45 by igloo]
Allows a -ws-64 stdout variant rather than requiring each 64-bit
platform to have a -platform one. (You now need to make boot in
testsuite after configure but before running tests).
Modify enum001, partly to alter spacing but also to inline printTest
where things like \NUL are used, as modern cpp behaves differently.
Rename the generated .script files to .genscript to make it easier to
clean a testsuite tree.
Diffstat (limited to 'testsuite/Makefile')
-rw-r--r-- | testsuite/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/testsuite/Makefile b/testsuite/Makefile index 795e6bcf11..f49015d9a5 100644 --- a/testsuite/Makefile +++ b/testsuite/Makefile @@ -1,9 +1,14 @@ TOP = . include $(TOP)/mk/boilerplate.mk -all boot :: +CLEAN_FILES += mk/wordsize.mk + +all :: @echo "To run the tests, go into tests/ghc-regress and say \`make'." @echo "More information about configuring and running the testsuite" @echo "can be found in the file \`README' in this directory." +boot :: + $(CPP) $(RAWCPP_FLAGS) -x c mk/wordsize.mk.in > mk/wordsize.mk + include $(TOP)/mk/target.mk |