Revision 1b44aafa518b44f8b7b76e6e73dbba1d2141600b authored by Roman Matthias Keil on 18 August 2014, 08:04:51 UTC, committed by Roman Matthias Keil on 17 September 2014, 14:33:15 UTC
1 parent 204b24b
Raw File
Makefile
default:
	./js -f src/shell.js -f bootstrap.js  -i

.PHONY: test
test:
	./js -f src/shell.js -f bootstrap.js -f test/test.js -i

octane:
	./js -f src/shell.js -f bootstrap.js -f benchmark/octane/octane.js -i

inference:
	./js -f src/shell.js -f bootstrap.js -f benchmark/typedoctane/typedoctane.js -f benchmark/typedoctane/inference.js

inferencef:
	rm -f benchmark/typedoctane/TYPES.js
	./js -f src/shell.js -f bootstrap.js -f benchmark/typedoctane/typedoctane.js -f benchmark/typedoctane/inference.js >> benchmark/typedoctane/TYPES.js

typed:
	./js -f src/shell.js -f bootstrap.js -f benchmark/typedoctane/typedoctane.js -f benchmark/typedoctane/typed.js
back to top