mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 20:45:06 +02:00
Added 'make bench'
This commit is contained in:
parent
d54a0130c0
commit
2e215adafb
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -122,7 +122,7 @@ doc :
|
||||||
|
|
||||||
# Helper rules (of interest to people hacking on this makefile)
|
# Helper rules (of interest to people hacking on this makefile)
|
||||||
|
|
||||||
.PHONY: clean full bootstrap tags indent debug test doc
|
.PHONY: clean full bench bootstrap tags indent debug test doc
|
||||||
|
|
||||||
$(TESTS) : %: %.scm
|
$(TESTS) : %: %.scm
|
||||||
$(CYCLONE) -I . $<
|
$(CYCLONE) -I . $<
|
||||||
|
@ -190,6 +190,9 @@ libcyclone.a : runtime.o gc.o dispatch.o mstreams.o
|
||||||
full :
|
full :
|
||||||
make clean ; make && make test && make bootstrap && cd ../cyclone-bootstrap && make clean && ./install.sh
|
make clean ; make && make test && make bootstrap && cd ../cyclone-bootstrap && make clean && ./install.sh
|
||||||
|
|
||||||
|
bench :
|
||||||
|
cd ../r7rs-benchmarks && rm results.Cyclone && ./bench cyclone all && grep Elapsed results.Cyclone >out.txt ; grep Elapsed results.Cyclone |wc ; grep -i -e error -e limit -e crash results.Cyclone
|
||||||
|
|
||||||
bootstrap : icyc libs
|
bootstrap : icyc libs
|
||||||
mkdir -p $(BOOTSTRAP_DIR)/scheme/cyclone
|
mkdir -p $(BOOTSTRAP_DIR)/scheme/cyclone
|
||||||
mkdir -p $(BOOTSTRAP_DIR)/srfi
|
mkdir -p $(BOOTSTRAP_DIR)/srfi
|
||||||
|
|
Loading…
Add table
Reference in a new issue