usr
/
src
/
kernels
/
3.10.0-1160.119.1.el7.tuxcare.els10.x86_64
/
tools
/
testing
/
selftests
/
powerpc
➕ New
📤 Upload
✎ Editing:
Makefile
← Back
# 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 SUB_DIRS = tm switch_endian dscr endif all: @for TARGET in $(SUB_DIRS); do \ $(MAKE) -C $$TARGET all; \ done; run_tests: all @for TARGET in $(SUB_DIRS); do \ $(MAKE) -C $$TARGET run_tests; \ done; clean: @for TARGET in $(SUB_DIRS); do \ $(MAKE) -C $$TARGET clean; \ done; rm -f tags tags: find . -name '*.c' -o -name '*.h' | xargs ctags .PHONY: all run_tests clean tags
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel