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)) 7CFLAGS += -I../../../../usr/include/ 8TEST_GEN_PROGS := tags_test 9TEST_PROGS := run_tags_test.sh 10endif 11 12include ../lib.mk 13