]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/testing/selftests/Makefile
Merge branches 'no-rebases', 'arch-avr32', 'arch-blackfin', 'arch-cris', 'arch-h8300...
[mirror_ubuntu-bionic-kernel.git] / tools / testing / selftests / Makefile
CommitLineData
a80a6b85 1TARGETS = breakpoints kcmp mqueue vm cpu-hotplug memory-hotplug
274343ad
FW
2
3all:
4 for TARGET in $(TARGETS); do \
5 make -C $$TARGET; \
6 done;
7
cab6b056 8run_tests: all
f467f714
FW
9 for TARGET in $(TARGETS); do \
10 make -C $$TARGET run_tests; \
11 done;
12
274343ad
FW
13clean:
14 for TARGET in $(TARGETS); do \
15 make -C $$TARGET clean; \
16 done;