aboutsummaryrefslogtreecommitdiff
path: root/vm/Makefile
blob: 3f94e1afd6cfdf88b906d9806b7873633f5523cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Makefile for vm selftests

CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall
BINARIES = hugepage-mmap hugepage-shm map_hugetlb thuge-gen hugetlbfstest

all: $(BINARIES)
%: %.c
	$(CC) $(CFLAGS) -o $@ $^

run_tests: all
	@/bin/sh ./run_vmtests || (echo "vmtests: [FAIL]"; exit 1)

clean:
	$(RM) $(BINARIES)