aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/futex/Makefile
blob: 2c26d59aaaeeaba664e301d2602c43c87af3d4f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
SUBDIRS := functional

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

run_tests: all
	./run.sh

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