| Index: Makefile |
| diff --git a/Makefile b/Makefile |
| index 7d2d5946279824f988b98a23d5ec376fd9c586f8..216d66795a04856b23aa515b6b03b4aa45ddf68b 100644 |
| --- a/Makefile |
| +++ b/Makefile |
| @@ -10,6 +10,8 @@ TFLAGS = --strict-semicolons -- |
| build: bin/traceur.js |
| +time-build: build bin/traceur.time.js.log |
| + |
| min: bin/traceur.min.js |
| # Uses uglifyjs to compress. Make sure you have it installed |
| @@ -62,6 +64,9 @@ src/syntax/trees/ParseTreeType.js: src/syntax/trees/trees.json build/build-parse |
| %.js: %.js-template.js |
| node build/expand-js-template.js $^ $@ |
| +%.time.js %.time.js.log: %.js |
| + ./traceur --out $*.time.js --time $(TFLAGS) $(SRC) > $*.time.js.log |
| + |
| bin/traceur.ugly.js: bin/traceur.js |
| uglifyjs bin/traceur.js --compress dead_code=true,unused=true,sequences=true,join_vars=true,evaluate=true,booleans=true,conditionals=true -m -o $@ |