diff options
| author | Joern Engel <joern@logfs.org> | 2013-07-03 15:09:18 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 16:08:07 -0700 | 
| commit | fc256f04eb82abcd2bd828fee4af0c36763ffee0 (patch) | |
| tree | 277366f4bb6fb4696b2f9f2ecf1e9822f053bc40 /tools | |
| parent | 51a1d16563fb6488ae1f30d31f62abc6aa50b268 (diff) | |
| download | linux-fc256f04eb82abcd2bd828fee4af0c36763ffee0.tar.bz2 | |
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/Makefile | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/tools/testing/selftests/vm/Makefile b/tools/testing/selftests/vm/Makefile index 7d4792799043..cb3f5f2e0f5f 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) |