aboutsummaryrefslogtreecommitdiff
path: root/powerpc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'powerpc/Makefile')
-rw-r--r--powerpc/Makefile39
1 files changed, 39 insertions, 0 deletions
diff --git a/powerpc/Makefile b/powerpc/Makefile
new file mode 100644
index 0000000..74a78ce
--- /dev/null
+++ b/powerpc/Makefile
@@ -0,0 +1,39 @@
+# Makefile for powerpc selftests
+
+# ARCH can be overridden by the user for cross compiling
+ARCH ?= $(shell uname -m)
+ARCH := $(shell echo $(ARCH) | sed -e s/ppc.*/powerpc/)
+
+ifeq ($(ARCH),powerpc)
+
+GIT_VERSION = $(shell git describe --always --long --dirty || echo "unknown")
+
+CC := $(CROSS_COMPILE)$(CC)
+CFLAGS := -Wall -O2 -flto -Wall -Werror -DGIT_VERSION='"$(GIT_VERSION)"' -I$(CURDIR) $(CFLAGS)
+
+export CC CFLAGS
+
+TARGETS = pmu copyloops mm tm
+
+endif
+
+all: $(TARGETS)
+
+$(TARGETS):
+ $(MAKE) -k -C $@ all
+
+run_tests: all
+ @for TARGET in $(TARGETS); do \
+ $(MAKE) -C $$TARGET run_tests; \
+ done;
+
+clean:
+ @for TARGET in $(TARGETS); do \
+ $(MAKE) -C $$TARGET clean; \
+ done;
+ rm -f tags
+
+tags:
+ find . -name '*.c' -o -name '*.h' | xargs ctags
+
+.PHONY: all run_tests clean tags $(TARGETS)