summaryrefslogtreecommitdiff
path: root/powerpc/primitives/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'powerpc/primitives/Makefile')
-rw-r--r--powerpc/primitives/Makefile15
1 files changed, 5 insertions, 10 deletions
diff --git a/powerpc/primitives/Makefile b/powerpc/primitives/Makefile
index ea737ca..b68c622 100644
--- a/powerpc/primitives/Makefile
+++ b/powerpc/primitives/Makefile
@@ -1,17 +1,12 @@
CFLAGS += -I$(CURDIR)
-PROGS := load_unaligned_zeropad
+TEST_PROGS := load_unaligned_zeropad
-all: $(PROGS)
+all: $(TEST_PROGS)
-$(PROGS): ../harness.c
+$(TEST_PROGS): ../harness.c
-run_tests: all
- @-for PROG in $(PROGS); do \
- ./$$PROG; \
- done;
+include ../../lib.mk
clean:
- rm -f $(PROGS) *.o
-
-.PHONY: all run_tests clean
+ rm -f $(TEST_PROGS) *.o