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 go install -v ./go/migratedb | |
jcgregorio
2014/09/30 14:54:08
Can you instead create a migratedb target and then
stephana
2014/09/30 18:11:49
Done.
| |
4 | 5 |
5 .PHONY: ver | 6 .PHONY: ver |
6 ver: H=$(shell echo `git log -n 1 --format=format:%H`) | 7 ver: H=$(shell echo `git log -n 1 --format=format:%H`) |
7 ver: | 8 ver: |
8 S=$(shell echo $H | cut -c1-5); \ | 9 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 | 10 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 | 11 git update-index --assume-unchanged templates/titlebar.html |
11 | 12 |
12 .PHONY: release | 13 .PHONY: release |
13 release: ver build | 14 release: ver build |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
60 | 61 |
61 .PHONY: lint | 62 .PHONY: lint |
62 lint: | 63 lint: |
63 grunt --no-color jshint:main | 64 grunt --no-color jshint:main |
64 | 65 |
65 .PHONY: all | 66 .PHONY: all |
66 all: build ingest tool logs | 67 all: build ingest tool logs |
67 | 68 |
68 tags: | 69 tags: |
69 etags --recurse res/ go/ | 70 etags --recurse res/ go/ |
OLD | NEW |