1 # Taken from perf makefile 2 uname_M := $(shell uname -m 2>/dev/null || echo not) 3 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/) 4 5 ifeq ($(ARCH),x86) 6 TEST_GEN_PROGS := breakpoint_test 7 endif 8 ifeq ($(ARCH),aarch64) 9 TEST_GEN_PROGS := breakpoint_test_arm64 10 endif 11 12 TEST_GEN_PROGS += step_after_suspend_test 13 14 include ../lib.mk 15 16