summaryrefslogblamecommitdiffstats
path: root/tools/testing/selftests/Makefile
blob: 9f3eae2909009517cb96de2f882121883f43444e (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 += net
TARGETS += ptrace
TARGETS += timers
TARGETS += vm
TARGETS += powerpc

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;