1*9ce12630SAndrey Konovalov# SPDX-License-Identifier: GPL-2.0 2*9ce12630SAndrey Konovalov 3*9ce12630SAndrey Konovalov# ARCH can be overridden by the user for cross compiling 4*9ce12630SAndrey KonovalovARCH ?= $(shell uname -m 2>/dev/null || echo not) 5*9ce12630SAndrey Konovalov 6*9ce12630SAndrey Konovalovifneq (,$(filter $(ARCH),aarch64 arm64)) 7*9ce12630SAndrey KonovalovTEST_GEN_PROGS := tags_test 8*9ce12630SAndrey KonovalovTEST_PROGS := run_tags_test.sh 9*9ce12630SAndrey Konovalovendif 10*9ce12630SAndrey Konovalov 11*9ce12630SAndrey Konovalovinclude ../lib.mk 12