summaryrefslogtreecommitdiff
path: root/powerpc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'powerpc/Makefile')
-rw-r--r--powerpc/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/powerpc/Makefile b/powerpc/Makefile
index 74a78ce..bd24ae5 100644
--- a/powerpc/Makefile
+++ b/powerpc/Makefile
@@ -13,14 +13,14 @@ CFLAGS := -Wall -O2 -flto -Wall -Werror -DGIT_VERSION='"$(GIT_VERSION)"' -I$(CUR
export CC CFLAGS
-TARGETS = pmu copyloops mm tm
+TARGETS = pmu
endif
-all: $(TARGETS)
-
-$(TARGETS):
- $(MAKE) -k -C $@ all
+all:
+ @for TARGET in $(TARGETS); do \
+ $(MAKE) -C $$TARGET all; \
+ done;
run_tests: all
@for TARGET in $(TARGETS); do \
@@ -36,4 +36,4 @@ clean:
tags:
find . -name '*.c' -o -name '*.h' | xargs ctags
-.PHONY: all run_tests clean tags $(TARGETS)
+.PHONY: all run_tests clean tags