9 lines
141 B
Makefile
9 lines
141 B
Makefile
|
|
SUBDIRS = checkfs fs-tests jittertest ubi-tests
|
|
|
|
all clean tests: $(SUBDIRS)
|
|
|
|
.PHONY: $(SUBDIRS)
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|