40 lines
802 B
Makefile
40 lines
802 B
Makefile
|
# 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 primitives
|
||
|
|
||
|
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)
|