| OLD | NEW |
| 1 .PHONY: build | 1 .PHONY: build |
| 2 build: res/css/perf.css res/js/perf.js | 2 build: res/css/perf.css res/js/perf.js |
| 3 go install -v ./go/skiaperf | 3 go install -v ./go/skiaperf |
| 4 | 4 |
| 5 migratedb: |
| 6 go install -v ./go/migratedb |
| 7 |
| 5 .PHONY: ver | 8 .PHONY: ver |
| 6 ver: H=$(shell echo `git log -n 1 --format=format:%H`) | 9 ver: H=$(shell echo `git log -n 1 --format=format:%H`) |
| 7 ver: | 10 ver: |
| 8 S=$(shell echo $H | cut -c1-5); \ | 11 S=$(shell echo $H | cut -c1-5); \ |
| 9 sed --in-place "s/\(<span id=\"version\">\)\(.*\)\(<\/span>\)/\1<a href=
\"https:\/\/skia.googlesource.com\/buildbot\/+\/$H\" target=\"_blank\">Ver:$$S<\
/a>\3/" templates/titlebar.html | 12 sed --in-place "s/\(<span id=\"version\">\)\(.*\)\(<\/span>\)/\1<a href=
\"https:\/\/skia.googlesource.com\/buildbot\/+\/$H\" target=\"_blank\">Ver:$$S<\
/a>\3/" templates/titlebar.html |
| 10 git update-index --assume-unchanged templates/titlebar.html | 13 git update-index --assume-unchanged templates/titlebar.html |
| 11 | 14 |
| 12 .PHONY: release | 15 .PHONY: release |
| 13 release: ver build | 16 release: ver build |
| 14 echo | 17 echo |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 # Rebuild the third_party Javascript we use, but w/o minimizing it. | 59 # Rebuild the third_party Javascript we use, but w/o minimizing it. |
| 57 .PHONY: debug-js | 60 .PHONY: debug-js |
| 58 debug-js: | 61 debug-js: |
| 59 ./node_modules/.bin/grunt --no-color debug-js | 62 ./node_modules/.bin/grunt --no-color debug-js |
| 60 | 63 |
| 61 .PHONY: lint | 64 .PHONY: lint |
| 62 lint: | 65 lint: |
| 63 grunt --no-color jshint:main | 66 grunt --no-color jshint:main |
| 64 | 67 |
| 65 .PHONY: all | 68 .PHONY: all |
| 66 all: build ingest tool logs | 69 all: build ingest tool logs migratedb |
| 67 | 70 |
| 68 tags: | 71 tags: |
| 69 etags --recurse res/ go/ | 72 etags --recurse res/ go/ |
| OLD | NEW |