| OLD | NEW |
| 1 build: res/css/perf.css res/js/perf.js ingest | 1 build: res/css/perf.css res/js/perf.js ingest |
| 2 GOPATH=$(GOPATH):`pwd` go build -o perf -v server | 2 GOPATH=$(GOPATH):`pwd` go build -o perf -v server |
| 3 | 3 |
| 4 tile: | 4 tile: |
| 5 GOPATH=$(GOPATH):`pwd` go build -v tilebuilder | 5 GOPATH=$(GOPATH):`pwd` go build -v tilebuilder |
| 6 | 6 |
| 7 test: | 7 test: |
| 8 GOPATH=$(GOPATH):`pwd` go test kmeans ctrace | 8 GOPATH=$(GOPATH):`pwd` go test kmeans ctrace |
| 9 ./node_modules/.bin/grunt test | 9 ./node_modules/.bin/grunt test |
| 10 | 10 |
| 11 verbosetests: | 11 verbosetests: |
| 12 GOPATH=$(GOPATH):`pwd` go test kmeans ctrace -v | 12 GOPATH=$(GOPATH):`pwd` go test kmeans ctrace -v |
| 13 | 13 |
| 14 ingest: src/ingest/ingest.go src/ingest/ingest_main.go | 14 ingest: src/ingest/ingest.go src/ingest/ingest_main.go |
| 15 go build src/ingest/ingest.go src/ingest/ingest_main.go | 15 go build src/ingest/ingest.go src/ingest/ingest_main.go |
| 16 | 16 |
| 17 logs: |
| 18 GOPATH=$(GOPATH):`pwd` go build -v logserver |
| 19 |
| 20 |
| 17 tool: src/ingest/ingest.go | 21 tool: src/ingest/ingest.go |
| 18 GOPATH=$(GOPATH):`pwd` go build -v tiletool | 22 GOPATH=$(GOPATH):`pwd` go build -v tiletool |
| 19 | 23 |
| 20 # Rebuild the third_party Javascript we use, i.e. Flot. | 24 # Rebuild the third_party Javascript we use, i.e. Flot. |
| 21 res/js/perf.js: node_modules Gruntfile.js bower.json | 25 res/js/perf.js: node_modules Gruntfile.js bower.json |
| 22 ./node_modules/.bin/grunt | 26 ./node_modules/.bin/grunt |
| 23 | 27 |
| 24 # Build serving CSS from input CSS. | 28 # Build serving CSS from input CSS. |
| 25 res/css/perf.css: node_modules res/css/main.css Gruntfile.js bower.json | 29 res/css/perf.css: node_modules res/css/main.css Gruntfile.js bower.json |
| 26 ./node_modules/.bin/grunt css | 30 ./node_modules/.bin/grunt css |
| 27 | 31 |
| 28 node_modules: package.json | 32 node_modules: package.json |
| 29 npm install | 33 npm install |
| 30 | 34 |
| 31 # Forcibly rebuild third_party JS | 35 # Forcibly rebuild third_party JS |
| 32 .PHONY: js | 36 .PHONY: js |
| 33 js: | 37 js: |
| 34 ./node_modules/.bin/grunt | 38 ./node_modules/.bin/grunt |
| 35 | 39 |
| 36 # Rebuild the third_party Javascript we use, but w/o minimizing it. | 40 # Rebuild the third_party Javascript we use, but w/o minimizing it. |
| 37 .PHONY: debug-js | 41 .PHONY: debug-js |
| 38 debug-js: | 42 debug-js: |
| 39 ./node_modules/.bin/grunt debug-js | 43 ./node_modules/.bin/grunt debug-js |
| 40 | 44 |
| OLD | NEW |