diff options
author | Andy Shevchenko <ext-andriy.shevchenko@nokia.com> | 2011-04-07 16:10:38 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-04-07 16:39:01 +0300 |
commit | 2fd3de12b9afbb22adc0fe808312ca4e142dd459 (patch) | |
tree | cc5ca90bcb50234884233508da187b423cb8d929 /tests | |
parent | a70811466de2c4c0c3a538e5e04a4dd1a8fbcc03 (diff) |
Makefile: introduce new target tests in Makefile
This patch appends Makefile to the tests subdirectory and introduces tests
target in the root Makefile.
Additionally the clean target removes temporary stuff under tests subdirectory
as well.
Signed-off-by: Andy Shevchenko <ext-andriy.shevchenko@nokia.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..05b37e9 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,8 @@ + +SUBDIRS = checkfs fs-tests jittertest ubi-tests + +all clean tests: $(SUBDIRS) + +.PHONY: $(SUBDIRS) +$(SUBDIRS): + $(MAKE) -C $@ $(MAKECMDGOALS) |