]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - tools/testing/selftests/breakpoints/Makefile
Merge tag 'mac80211-for-davem-2017-02-28' of git://git.kernel.org/pub/scm/linux/kerne...
[mirror_ubuntu-artful-kernel.git] / tools / testing / selftests / breakpoints / Makefile
CommitLineData
85bbddc3
FW
1# Taken from perf makefile
2uname_M := $(shell uname -m 2>/dev/null || echo not)
9fae100c 3ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
85bbddc3 4
85bbddc3 5ifeq ($(ARCH),x86)
88baa78d 6TEST_GEN_PROGS := breakpoint_test
85bbddc3 7endif
f43365ee 8ifeq ($(ARCH),aarch64)
88baa78d 9TEST_GEN_PROGS := breakpoint_test_arm64
f43365ee 10endif
85bbddc3 11
88baa78d 12TEST_GEN_PROGS += step_after_suspend_test
5e29a910
ME
13
14include ../lib.mk
f467f714 15