xref: /linux/tools/testing/selftests/prctl/Makefile (revision 9e229025e2474115c151f08bdbdd3d8d5f159af3)
1# SPDX-License-Identifier: GPL-2.0
2ifndef CROSS_COMPILE
3ARCH ?= $(shell uname -m 2>/dev/null || echo not)
4override ARCH := $(shell echo $(ARCH) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
5
6ifeq ($(ARCH),x86)
7TEST_PROGS := disable-tsc-ctxt-sw-stress-test disable-tsc-on-off-stress-test \
8		disable-tsc-test set-anon-vma-name-test set-process-name
9all: $(TEST_PROGS)
10
11include ../lib.mk
12
13endif
14endif
15