67f6a029b2
Depend on "make headers_install" to create proper headers to include and provide syscall numbers. Signed-off-by: Andrea Arcangeli <aarcange@redhat.com> Cc: Dr. David Alan Gilbert <dgilbert@redhat.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Shuah Khan <shuahkh@osg.samsung.com> Cc: Thierry Reding <treding@nvidia.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
28 lines
603 B
Makefile
28 lines
603 B
Makefile
# Makefile for vm selftests
|
|
|
|
CFLAGS = -Wall -I ../../../../usr/include $(EXTRA_CFLAGS)
|
|
BINARIES = compaction_test
|
|
BINARIES += hugepage-mmap
|
|
BINARIES += hugepage-shm
|
|
BINARIES += map_hugetlb
|
|
BINARIES += thuge-gen
|
|
BINARIES += transhuge-stress
|
|
BINARIES += userfaultfd
|
|
|
|
all: $(BINARIES)
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $^ -lrt
|
|
userfaultfd: userfaultfd.c ../../../../usr/include/linux/kernel.h
|
|
$(CC) $(CFLAGS) -O2 -o $@ $< -lpthread
|
|
|
|
../../../../usr/include/linux/kernel.h:
|
|
make -C ../../../.. headers_install
|
|
|
|
TEST_PROGS := run_vmtests
|
|
TEST_FILES := $(BINARIES)
|
|
|
|
include ../lib.mk
|
|
|
|
clean:
|
|
$(RM) $(BINARIES)
|