summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJoern Engel <joern@logfs.org>2013-07-03 15:09:18 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2013-07-03 16:08:07 -0700
commitfc256f04eb82abcd2bd828fee4af0c36763ffee0 (patch)
tree277366f4bb6fb4696b2f9f2ecf1e9822f053bc40 /tools
parent51a1d16563fb6488ae1f30d31f62abc6aa50b268 (diff)
downloadlinux-0-day-fc256f04eb82abcd2bd828fee4af0c36763ffee0.tar.gz
linux-0-day-fc256f04eb82abcd2bd828fee4af0c36763ffee0.tar.xz
self-test: fix make clean
thuge-gen was forgotten. Fix it by removing the duplication, so we don't get too many repeats. Signed-off-by: Joern Engel <joern@logfs.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/testing/selftests/vm/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/testing/selftests/vm/Makefile b/tools/testing/selftests/vm/Makefile
index 7d47927990431..cb3f5f2e0f5ff 100644
--- a/tools/testing/selftests/vm/Makefile
+++ b/tools/testing/selftests/vm/Makefile
@@ -2,8 +2,9 @@
CC = $(CROSS_COMPILE)gcc
CFLAGS = -Wall
+BINARIES = hugepage-mmap hugepage-shm map_hugetlb thuge-gen
-all: hugepage-mmap hugepage-shm map_hugetlb thuge-gen
+all: $(BINARIES)
%: %.c
$(CC) $(CFLAGS) -o $@ $^
@@ -11,4 +12,4 @@ run_tests: all
@/bin/sh ./run_vmtests || (echo "vmtests: [FAIL]"; exit 1)
clean:
- $(RM) hugepage-mmap hugepage-shm map_hugetlb
+ $(RM) $(BINARIES)