Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Joern Engel and committed by
Linus Torvalds
fc256f04 51a1d165

+3 -2
+3 -2
tools/testing/selftests/vm/Makefile
··· 2 2 3 3 CC = $(CROSS_COMPILE)gcc 4 4 CFLAGS = -Wall 5 + BINARIES = hugepage-mmap hugepage-shm map_hugetlb thuge-gen 5 6 6 - all: hugepage-mmap hugepage-shm map_hugetlb thuge-gen 7 + all: $(BINARIES) 7 8 %: %.c 8 9 $(CC) $(CFLAGS) -o $@ $^ 9 10 ··· 12 11 @/bin/sh ./run_vmtests || (echo "vmtests: [FAIL]"; exit 1) 13 12 14 13 clean: 15 - $(RM) hugepage-mmap hugepage-shm map_hugetlb 14 + $(RM) $(BINARIES)