| OLD | NEW |
| 1 | 1 |
| 2 # The list of files we want to go into core.js, which is concat'd and | 2 # The list of files we want to go into core.js, which is concat'd and |
| 3 # minified. These files should be either present in the project, brought | 3 # minified. These files should be either present in the project, brought |
| 4 # into third_party/bower_compoents via bower, or in node_modules. | 4 # into third_party/bower_compoents via bower, or in node_modules. |
| 5 BOWER_DIR=third_party/bower_components | 5 BOWER_DIR=third_party/bower_components |
| 6 CORE_SOURCE_FILES = node_modules/native-promise-only/npo.js \ | 6 CORE_SOURCE_FILES = node_modules/native-promise-only/npo.js \ |
| 7 $(BOWER_DIR)/webcomponentsjs/webcomponents.min.js \ | 7 $(BOWER_DIR)/webcomponentsjs/webcomponents.min.js \ |
| 8 $(BOWER_DIR)/d3/d3.js \ |
| 8 ../res/js/common.js | 9 ../res/js/common.js |
| 9 | 10 |
| 10 .PHONY: all | 11 .PHONY: all |
| 11 all: allgo touch_elements res/css/core.css core_js elements_html | 12 all: allgo touch_elements res/css/core.css core_js elements_html |
| 12 | 13 |
| 13 include ../go/skiaversion/skiaversion.mk | 14 include ../go/skiaversion/skiaversion.mk |
| 14 | 15 |
| 15 .PHONY: skiacorrectness | 16 .PHONY: skiacorrectness |
| 16 skiacorrectness: skiaversion | 17 skiacorrectness: skiaversion |
| 17 go install -v ./go/skiacorrectness | 18 go install -v ./go/skiacorrectness |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 touch elements.html | 55 touch elements.html |
| 55 | 56 |
| 56 .PHONY: release | 57 .PHONY: release |
| 57 release: all | 58 release: all |
| 58 ./build_release "$(MESSAGE)" | 59 ./build_release "$(MESSAGE)" |
| 59 | 60 |
| 60 .PHONY: allgo | 61 .PHONY: allgo |
| 61 allgo: skiacorrectness correctness_migratedb | 62 allgo: skiacorrectness correctness_migratedb |
| 62 | 63 |
| 63 include ../webtools/webtools.mk | 64 include ../webtools/webtools.mk |
| OLD | NEW |