xref: /linux/tools/testing/selftests/arm64/Makefile (revision e0fcfb086fbbb6233de1062d4b2f05e9afedab3b)
1# SPDX-License-Identifier: GPL-2.0
2
3# ARCH can be overridden by the user for cross compiling
4ARCH ?= $(shell uname -m 2>/dev/null || echo not)
5
6ifneq (,$(filter $(ARCH),aarch64 arm64))
7TEST_GEN_PROGS := tags_test
8TEST_PROGS := run_tags_test.sh
9endif
10
11include ../lib.mk
12