summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e5333ee250..06eeeae716 100644
--- a/Makefile
+++ b/Makefile
@@ -4,13 +4,12 @@ DIRS := lib Driver
include $(LEVEL)/Makefile.common
test::
- @ cd test && $(MAKE) -f Makefile.parallel
+ @ $(MAKE) -C test -f Makefile.parallel
report::
- @ cd test && $(MAKE) -f Makefile.parallel report
+ @ $(MAKE) -C test -f Makefile.parallel report
clean::
- @ rm -rf build
- @ cd test && $(MAKE) -f Makefile.parallel clean
+ @ $(MAKE) -C test -f Makefile.parallel clean
.PHONY: test report clean