summaryrefslogblamecommitdiffstats
path: root/tools/testing/selftests/Makefile
blob: 4cb14cae37911ddbf41ee81fb46301b53ea144fb (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

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;