repo.or.cz
/
libc-test.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
new test framework (one main per test)
[libc-test.git]
/
Makefile
blob
a4726fb6ddd08d3adf711164834d99404a0325ca
1
DIRS
= $(
sort
$(
wildcard
src
/*))
2
3
all
:
4
for i in
$(
DIRS
);
do printf
"%-20s"
$
$i
;
make
-
s
-
C
$
$i
;
done
5
run
:
6
for i in
$(
DIRS
);
do printf
"%-20s"
$
$i
;
make
-
s
-
C
$
$i
run
;
done
7
clean
:
8
for i in
$(
DIRS
);
do make
-
s
-
C
$
$i
clean
;
done