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