diff options
author | Ian Lynagh <igloo@earth.li> | 2009-01-13 13:51:12 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-01-13 13:51:12 +0000 |
commit | 3e63f644de3816ec62dd73916bda6f78dbb7b18e (patch) | |
tree | b9a5aea6a992d6f6978a70c308dd84f44715b9db /testsuite/Makefile | |
parent | 87ffd67cc7214502374c8b8cdcd536bb71d641dc (diff) | |
download | haskell-3e63f644de3816ec62dd73916bda6f78dbb7b18e.tar.gz |
Tweak top-level Makefile
Diffstat (limited to 'testsuite/Makefile')
-rw-r--r-- | testsuite/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/testsuite/Makefile b/testsuite/Makefile index 51e8fafed4..5a2fcce79d 100644 --- a/testsuite/Makefile +++ b/testsuite/Makefile @@ -1,11 +1,12 @@ TOP = . include $(TOP)/mk/boilerplate.mk +boot: + $(MAKE) -C $(TOP)/timeout all + all: - cd tests/ghc-regress && $(MAKE) $(MFLAGS) + $(MAKE) -C $(TOP)/tests/ghc-regress all clean distclean: - $(MAKE) -C timeout $@ + $(MAKE) -C $(TOP)/timeout $@ -boot: - cd $(TOP)/timeout && $(MAKE) $(MFLAGS) all |