Makefile 396 B

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