Skip to content

Commit fc256f0

Browse files
Joern Engeltorvalds
authored andcommitted
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>
1 parent 51a1d16 commit fc256f0

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/testing/selftests/vm/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
CC = $(CROSS_COMPILE)gcc
44
CFLAGS = -Wall
5+
BINARIES = hugepage-mmap hugepage-shm map_hugetlb thuge-gen
56

6-
all: hugepage-mmap hugepage-shm map_hugetlb thuge-gen
7+
all: $(BINARIES)
78
%: %.c
89
$(CC) $(CFLAGS) -o $@ $^
910

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

1314
clean:
14-
$(RM) hugepage-mmap hugepage-shm map_hugetlb
15+
$(RM) $(BINARIES)

0 commit comments

Comments
 (0)