Makefile (50501936288d6a29d7ef78f25d00e33240fad45f) | Makefile (e0606daeaab4fba3cc418a202da81aa7a57c0342) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2ifndef CROSS_COMPILE 3uname_M := $(shell uname -m 2>/dev/null || echo not) 4ARCH ?= $(shell echo $(uname_M) | 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 \ | 1# SPDX-License-Identifier: GPL-2.0 2ifndef CROSS_COMPILE 3uname_M := $(shell uname -m 2>/dev/null || echo not) 4ARCH ?= $(shell echo $(uname_M) | 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 | 8 disable-tsc-test set-anon-vma-name-test set-process-name |
9all: $(TEST_PROGS) 10 11include ../lib.mk 12 13clean: 14 rm -fr $(TEST_PROGS) 15endif 16endif | 9all: $(TEST_PROGS) 10 11include ../lib.mk 12 13clean: 14 rm -fr $(TEST_PROGS) 15endif 16endif |