aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Lezcano <daniel.lezcano@linaro.org>2011-07-26 14:38:59 +0200
committerDaniel Lezcano <daniel.lezcano@linaro.org>2011-07-26 14:38:59 +0200
commitce9ccca296b3242c99fd795be4eee127affab1ba (patch)
tree82793e8d0b569d3a2ad061686ac18eacfe9d330c /Makefile
parent48839cd20493d43b9f93f5fc2ab5690ff02d1adf (diff)
put in place the new framework
In order to run the tests, invoke: 'make check' Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a667f35..be9df5d 100644
--- a/Makefile
+++ b/Makefile
@@ -23,8 +23,18 @@
#
all:
+ @(cd utils; $(MAKE))
@(cd testcases; $(MAKE) all)
+check:
+ @(cd utils; $(MAKE) check)
+ @(cd cpufreq; $(MAKE) check)
+uncheck:
+ @(cd cpufreq; $(MAKE) uncheck)
+
+recheck: uncheck check
+
clean:
+ @(cd utils; $(MAKE) clean)
@(cd testcases; $(MAKE) clean)