diff options
author | sewardj <unknown> | 2001-06-12 12:06:02 +0000 |
---|---|---|
committer | sewardj <unknown> | 2001-06-12 12:06:02 +0000 |
commit | 9531b027666ff2468eab4aff5d9229199a188cd8 (patch) | |
tree | 3b6293c554c689636fc2925e85297b8130b63f47 /testsuite/Makefile | |
parent | cded480bf3efa7a7901c1ff74ad2001527622b32 (diff) | |
download | haskell-9531b027666ff2468eab4aff5d9229199a188cd8.tar.gz |
[project @ 2001-06-12 12:06:02 by sewardj]
Make another sad directory happy.
You can now cd to fptools/testsuite and do 'make all'. This will
build the test driver and then run ghc/compiler/ghc-inplace over
the as-yet small collection of tests herein.
Diffstat (limited to 'testsuite/Makefile')
-rw-r--r-- | testsuite/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/Makefile b/testsuite/Makefile new file mode 100644 index 0000000000..ada52a5746 --- /dev/null +++ b/testsuite/Makefile @@ -0,0 +1,14 @@ + +all: runtests test + +boot: + @echo "Make boot is not needed here" + +runtests: + (cd driver && make runtests) +clean: + (cd driver && make clean) + +test: runtests + driver/runtests --tool=../ghc/compiler/ghc-inplace \ + --config=config/msrc/cam-02-unx.T tests |