repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
self-test: fix make clean
[linux/fpc-iii.git]
/
tools
/
testing
/
selftests
/
vm
/
Makefile
blob
cb3f5f2e0f5ff284977114b631bd0c6442e3bf2f
1
# Makefile for vm selftests
2
3
CC
= $(
CROSS_COMPILE
)
gcc
4
CFLAGS
= -
Wall
5
BINARIES
=
hugepage-mmap hugepage-shm map_hugetlb thuge-gen
6
7
all
: $(
BINARIES
)
8
%: %
.c
9
$(
CC
) $(
CFLAGS
) -
o
$
@
$
^
10
11
run_tests
:
all
12
@
/
bin
/
sh .
/
run_vmtests ||
(
echo
"vmtests: [FAIL]"
;
exit
1
)
13
14
clean
:
15
$(
RM
) $(
BINARIES
)