License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / tools / testing / selftests / breakpoints / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
85bbddc3
FW
2# Taken from perf makefile
3uname_M := $(shell uname -m 2>/dev/null || echo not)
9fae100c 4ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
85bbddc3 5
172a8ca8
FB
6TEST_GEN_PROGS := step_after_suspend_test
7
85bbddc3 8ifeq ($(ARCH),x86)
172a8ca8 9TEST_GEN_PROGS += breakpoint_test
85bbddc3 10endif
b13f7666 11ifneq (,$(filter $(ARCH),aarch64 arm64))
172a8ca8 12TEST_GEN_PROGS += breakpoint_test_arm64
f43365ee 13endif
85bbddc3 14
5e29a910 15include ../lib.mk
f467f714 16