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