aboutsummaryrefslogblamecommitdiffstats
path: root/tools/testing/selftests/Makefile
blob: 43480149119ee773f0a32cc8abe995903609fd11 (plain) (tree)
1
2
3
4
5
6
7
8
                                                                     





                                      
              



                                             



                                         
TARGETS = breakpoints kcmp mqueue vm cpu-hotplug memory-hotplug epoll

all:
	for TARGET in $(TARGETS); do \
		make -C $$TARGET; \
	done;

run_tests: all
	for TARGET in $(TARGETS); do \
		make -C $$TARGET run_tests; \
	done;

clean:
	for TARGET in $(TARGETS); do \
		make -C $$TARGET clean; \
	done;