Merge tag 'rproc-v4.14-fixes' of git://github.com/andersson/remoteproc
[sfrench/cifs-2.6.git] / tools / testing / selftests / breakpoints / Makefile
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 TEST_GEN_PROGS := step_after_suspend_test
6
7 ifeq ($(ARCH),x86)
8 TEST_GEN_PROGS += breakpoint_test
9 endif
10 ifneq (,$(filter $(ARCH),aarch64 arm64))
11 TEST_GEN_PROGS += breakpoint_test_arm64
12 endif
13
14 include ../lib.mk
15