aboutsummaryrefslogtreecommitdiff
path: root/powerpc/tm/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'powerpc/tm/Makefile')
-rw-r--r--powerpc/tm/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/powerpc/tm/Makefile b/powerpc/tm/Makefile
new file mode 100644
index 0000000..2cede23
--- /dev/null
+++ b/powerpc/tm/Makefile
@@ -0,0 +1,15 @@
+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