Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: cd3de83f147601356395b57a8673e9c5ff1e59d1 authored by Linus Torvalds on 06 July 2014, 19:37:51 UTC
Linux 3.16-rc4
Tip revision: cd3de83
Makefile
# 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)
back to top