~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/powerpc/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/testing/selftests/powerpc/Makefile (Architecture m68k) and /tools/testing/selftests/powerpc/Makefile (Architecture i386)


  1 # SPDX-License-Identifier: GPL-2.0                  1 # SPDX-License-Identifier: GPL-2.0
  2 # Makefile for powerpc selftests                    2 # Makefile for powerpc selftests
  3                                                     3 
  4 # ARCH can be overridden by the user for cross      4 # ARCH can be overridden by the user for cross compiling
  5 ARCH ?= $(shell uname -m)                           5 ARCH ?= $(shell uname -m)
  6 ARCH := $(shell echo $(ARCH) | sed -e s/ppc.*/      6 ARCH := $(shell echo $(ARCH) | sed -e s/ppc.*/powerpc/)
  7                                                     7 
  8 ifeq ($(ARCH),powerpc)                              8 ifeq ($(ARCH),powerpc)
  9                                                     9 
 10 SUB_DIRS = alignment            \                  10 SUB_DIRS = alignment            \
 11            benchmarks           \                  11            benchmarks           \
 12            cache_shape          \                  12            cache_shape          \
 13            copyloops            \                  13            copyloops            \
 14            dexcr                \                  14            dexcr                \
 15            dscr                 \                  15            dscr                 \
 16            mm                   \                  16            mm                   \
 17            nx-gzip              \                  17            nx-gzip              \
 18            pmu                  \                  18            pmu                  \
 19            signal               \                  19            signal               \
 20            primitives           \                  20            primitives           \
 21            stringloops          \                  21            stringloops          \
 22            switch_endian        \                  22            switch_endian        \
 23            syscalls             \                  23            syscalls             \
 24            tm                   \                  24            tm                   \
 25            eeh                  \                  25            eeh                  \
 26            vphn         \                          26            vphn         \
 27            math         \                          27            math         \
 28            papr_attributes      \                  28            papr_attributes      \
 29            papr_vpd             \                  29            papr_vpd             \
 30            papr_sysparm         \                  30            papr_sysparm         \
 31            ptrace       \                          31            ptrace       \
 32            security     \                          32            security     \
 33            mce                                     33            mce
 34                                                    34 
 35 endif                                              35 endif
 36                                                    36 
 37 all: $(SUB_DIRS)                                   37 all: $(SUB_DIRS)
 38                                                    38 
 39 $(SUB_DIRS):                                       39 $(SUB_DIRS):
 40         BUILD_TARGET=$(OUTPUT)/$@; mkdir -p $$     40         BUILD_TARGET=$(OUTPUT)/$@; mkdir -p $$BUILD_TARGET; $(MAKE) OUTPUT=$$BUILD_TARGET -k -C $@ all
 41                                                    41 
 42 include ../lib.mk                                  42 include ../lib.mk
 43 include ./flags.mk                                 43 include ./flags.mk
 44                                                    44 
 45 override define RUN_TESTS                          45 override define RUN_TESTS
 46         +@for TARGET in $(SUB_DIRS); do \          46         +@for TARGET in $(SUB_DIRS); do \
 47                 BUILD_TARGET=$(OUTPUT)/$$TARGE     47                 BUILD_TARGET=$(OUTPUT)/$$TARGET;        \
 48                 $(MAKE) OUTPUT=$$BUILD_TARGET      48                 $(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET run_tests;\
 49         done;                                      49         done;
 50 endef                                              50 endef
 51                                                    51 
 52 override define INSTALL_RULE                       52 override define INSTALL_RULE
 53         +@for TARGET in $(SUB_DIRS); do \          53         +@for TARGET in $(SUB_DIRS); do \
 54                 BUILD_TARGET=$(OUTPUT)/$$TARGE     54                 BUILD_TARGET=$(OUTPUT)/$$TARGET;        \
 55                 $(MAKE) OUTPUT=$$BUILD_TARGET      55                 $(MAKE) OUTPUT=$$BUILD_TARGET INSTALL_PATH=$$INSTALL_PATH/$$TARGET -C $$TARGET install;\
 56         done;                                      56         done;
 57 endef                                              57 endef
 58                                                    58 
 59 emit_tests:                                        59 emit_tests:
 60         +@for TARGET in $(SUB_DIRS); do \          60         +@for TARGET in $(SUB_DIRS); do \
 61                 BUILD_TARGET=$(OUTPUT)/$$TARGE     61                 BUILD_TARGET=$(OUTPUT)/$$TARGET;        \
 62                 $(MAKE) OUTPUT=$$BUILD_TARGET      62                 $(MAKE) OUTPUT=$$BUILD_TARGET COLLECTION=$(COLLECTION)/$$TARGET -s -C $$TARGET $@;\
 63         done;                                      63         done;
 64                                                    64 
 65 override define CLEAN                              65 override define CLEAN
 66         +@for TARGET in $(SUB_DIRS); do \          66         +@for TARGET in $(SUB_DIRS); do \
 67                 BUILD_TARGET=$(OUTPUT)/$$TARGE     67                 BUILD_TARGET=$(OUTPUT)/$$TARGET;        \
 68                 $(MAKE) OUTPUT=$$BUILD_TARGET      68                 $(MAKE) OUTPUT=$$BUILD_TARGET -C $$TARGET clean; \
 69         done;                                      69         done;
 70         rm -f tags                                 70         rm -f tags
 71 endef                                              71 endef
 72                                                    72 
 73 tags:                                              73 tags:
 74         find . -name '*.c' -o -name '*.h' | xa     74         find . -name '*.c' -o -name '*.h' | xargs ctags
 75                                                    75 
 76 .PHONY: tags $(SUB_DIRS) emit_tests                76 .PHONY: tags $(SUB_DIRS) emit_tests
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php