makefile for benchmarks.
This commit is contained in:
parent
d6598cc7cd
commit
15b0595013
2 changed files with 9 additions and 0 deletions
7
benchmarks/Makefile
Normal file
7
benchmarks/Makefile
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Makefile for the benchmarks.
|
||||||
|
|
||||||
|
all::
|
||||||
|
chmod 755 run
|
||||||
|
|
||||||
|
all clean::
|
||||||
|
for b in *bench*; do cd $$b && $(MAKE) $@; done
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
make
|
||||||
|
|
||||||
benchmarks=`echo *bench*`
|
benchmarks=`echo *bench*`
|
||||||
|
|
||||||
runbench() {
|
runbench() {
|
||||||
|
|
Loading…
Reference in a new issue