staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / tools / testing / selftests / prctl / Makefile
blobc7923b205222dd0361a8971426780fde5498c19a
1 # SPDX-License-Identifier: GPL-2.0
2 ifndef CROSS_COMPILE
3 uname_M := $(shell uname -m 2>/dev/null || echo not)
4 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/x86/ -e s/x86_64/x86/)
6 ifeq ($(ARCH),x86)
7 TEST_PROGS := disable-tsc-ctxt-sw-stress-test disable-tsc-on-off-stress-test \
8 disable-tsc-test
9 all: $(TEST_PROGS)
11 include ../lib.mk
13 clean:
14 rm -fr $(TEST_PROGS)
15 endif
16 endif