android_kernel_samsung_on5x.../tools/testing/selftests/powerpc/tm/Makefile
2018-06-19 23:16:04 +02:00

15 lines
188 B
Makefile

PROGS := tm-resched-dscr
all: $(PROGS)
$(PROGS): ../harness.c
run_tests: all
@-for PROG in $(PROGS); do \
./$$PROG; \
done;
clean:
rm -f $(PROGS) *.o
.PHONY: all run_tests clean