9 lines
137 B
Makefile
9 lines
137 B
Makefile
|
|
SUBDIRS = lib simple stress integrity utils
|
|
|
|
all clean tests: $(SUBDIRS)
|
|
|
|
.PHONY: $(SUBDIRS)
|
|
$(SUBDIRS):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|