2012-01-13 08:20:46 +07:00
|
|
|
# Taken from perf makefile
|
|
|
|
uname_M := $(shell uname -m 2>/dev/null || echo not)
|
2015-08-14 20:43:38 +07:00
|
|
|
ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
|
2012-01-13 08:20:46 +07:00
|
|
|
|
|
|
|
ifeq ($(ARCH),x86)
|
2016-11-29 18:55:47 +07:00
|
|
|
TEST_GEN_PROGS := breakpoint_test
|
2012-01-13 08:20:46 +07:00
|
|
|
endif
|
2016-11-14 21:02:46 +07:00
|
|
|
ifeq ($(ARCH),aarch64)
|
2016-11-29 18:55:47 +07:00
|
|
|
TEST_GEN_PROGS := breakpoint_test_arm64
|
2016-11-14 21:02:46 +07:00
|
|
|
endif
|
2012-01-13 08:20:46 +07:00
|
|
|
|
2016-11-29 18:55:47 +07:00
|
|
|
TEST_GEN_PROGS += step_after_suspend_test
|
2015-03-11 11:05:59 +07:00
|
|
|
|
|
|
|
include ../lib.mk
|
2012-03-29 04:42:54 +07:00
|
|
|
|