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