tools: selftests: fix build issue with make kselftests target
[cascardo/linux.git] / tools / testing / selftests / kcmp / Makefile
1 uname_M := $(shell uname -m 2>/dev/null || echo not)
2 ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/)
3 ifeq ($(ARCH),i386)
4         ARCH := x86
5         CFLAGS := -DCONFIG_X86_32 -D__i386__
6 endif
7 ifeq ($(ARCH),x86_64)
8         ARCH := x86
9         CFLAGS := -DCONFIG_X86_64 -D__x86_64__
10 endif
11
12 CFLAGS += -I../../../../arch/x86/include/generated/
13 CFLAGS += -I../../../../include/
14 CFLAGS += -I../../../../usr/include/
15 CFLAGS += -I../../../../arch/x86/include/
16
17 all:
18 ifeq ($(ARCH),x86)
19         gcc $(CFLAGS) kcmp_test.c -o kcmp_test
20 else
21         echo "Not an x86 target, can't build kcmp selftest"
22 endif
23
24 run_tests: all
25         @./kcmp_test || echo "kcmp_test: [FAIL]"
26
27 clean:
28         $(RM) kcmp_test kcmp-test-file