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

                      
               
                         
                 
                 
                     
             





                                      
              



                                             



                                         
TARGETS = breakpoints
TARGETS += cpu-hotplug
TARGETS += efivarfs
TARGETS += kcmp
TARGETS += memory-hotplug
TARGETS += mqueue
TARGETS += ptrace
TARGETS += soft-dirty
TARGETS += vm

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;