diff options
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 |