selftests: add memfd_create() + sealing tests
[linux-2.6-block.git] / tools / testing / selftests / memfd / Makefile
CommitLineData
4f5ce5e8
DH
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
5endif
6ifeq ($(ARCH),x86_64)
7 ARCH := X86
8endif
9
10CFLAGS += -I../../../../arch/x86/include/generated/uapi/
11CFLAGS += -I../../../../arch/x86/include/uapi/
12CFLAGS += -I../../../../include/uapi/
13CFLAGS += -I../../../../include/
14
15all:
16ifeq ($(ARCH),X86)
17 gcc $(CFLAGS) memfd_test.c -o memfd_test
18else
19 echo "Not an x86 target, can't build memfd selftest"
20endif
21
22run_tests: all
23ifeq ($(ARCH),X86)
24 gcc $(CFLAGS) memfd_test.c -o memfd_test
25endif
26 @./memfd_test || echo "memfd_test: [FAIL]"
27
28clean:
29 $(RM) memfd_test