brintos

brintos / linux-shallow public Read only

0
0
Text · 396 B · 9ec2c78 Raw
17 lines · plain
1# SPDX-License-Identifier: GPL-2.02# Taken from perf makefile3uname_M := $(shell uname -m 2>/dev/null || echo not)4ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)5 6TEST_GEN_PROGS := step_after_suspend_test7 8ifeq ($(ARCH),x86)9TEST_GEN_PROGS += breakpoint_test10endif11ifneq (,$(filter $(ARCH),aarch64 arm64))12TEST_GEN_PROGS += breakpoint_test_arm6413endif14 15include ../lib.mk16 17