mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-10-30 15:48:52 +01:00
Fixed MTP to work with TWRP
This commit is contained in:
commit
f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions
39
tools/testing/selftests/powerpc/Makefile
Normal file
39
tools/testing/selftests/powerpc/Makefile
Normal file
|
|
@ -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 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue