]> git.karo-electronics.de Git - linux-beck.git/blob - tools/testing/selftests/vm/Makefile
ASoC: pcm512x: Use the correct range constraints for S24_LE
[linux-beck.git] / tools / testing / selftests / vm / Makefile
1 # Makefile for vm selftests
2
3 CC = $(CROSS_COMPILE)gcc
4 CFLAGS = -Wall
5 BINARIES = hugepage-mmap hugepage-shm map_hugetlb thuge-gen hugetlbfstest
6 BINARIES += transhuge-stress
7
8 all: $(BINARIES)
9 %: %.c
10         $(CC) $(CFLAGS) -o $@ $^
11
12 run_tests: all
13         @/bin/sh ./run_vmtests || (echo "vmtests: [FAIL]"; exit 1)
14
15 clean:
16         $(RM) $(BINARIES)