mirror of
https://github.com/robertkrimen/otto
synced 2025-10-12 20:27:30 +08:00
11 lines
236 B
Makefile
11 lines
236 B
Makefile
.PHONY: build test data
|
|
|
|
test:
|
|
python ./data/tools/packaging/test262.py --command "./otto -underscore=false" --test=data --non_strict_only
|
|
|
|
build:
|
|
$(MAKE) -C .. otto
|
|
|
|
data:
|
|
hg clone -r 334 http://hg.ecmascript.org/tests/test262 data
|