aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: aabc562e587b637e67c8571613c3d975a52dd764 (plain)
1
2
3
4
5
6
7
8
SUBDIRS := functional performance stress

.PHONY: all clean
all:
	for DIR in $(SUBDIRS); do $(MAKE) -C $$DIR $@ ; done

clean:
	for DIR in $(SUBDIRS); do $(MAKE) -C $$DIR $@ ; done