| OLD | NEW |
| 1 #Use Vulcanize 1.0 |
| 2 VULCANIZE1=true |
| 1 # The list of files we want to go into core.js, which is concat'd and | 3 # The list of files we want to go into core.js, which is concat'd and |
| 2 # minified. These files should be either present in the project, brought | 4 # minified. These files should be either present in the project, brought |
| 3 # into third_party/bower_compoents via bower, or in node_modules. | 5 # into third_party/bower_compoents via bower, or in node_modules. |
| 4 CORE_SOURCE_FILES = third_party/bower_components/webcomponentsjs/webcomponents.m
in.js \ | 6 CORE_SOURCE_FILES = third_party/bower_components/webcomponentsjs/webcomponents.m
in.js \ |
| 5 ../res/js/common.js | 7 ../res/js/common.js |
| 6 | 8 |
| 7 BOWER_DIR=third_party/bower_components | 9 BOWER_DIR=third_party/bower_components |
| 8 | 10 |
| 9 .PHONY: all | 11 .PHONY: all |
| 10 all: res/css/fuzzer.css core_js elements_html frontend fuzzer | 12 all: res/css/fuzzer.css core_js elements_html frontend fuzzer |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 # Build debug versions of core.js and elements.html. | 57 # Build debug versions of core.js and elements.html. |
| 56 .PHONY: debug | 58 .PHONY: debug |
| 57 debug: clean_webtools debug_core_js debug_elements_html | 59 debug: clean_webtools debug_core_js debug_elements_html |
| 58 | 60 |
| 59 .PHONY: tags | 61 .PHONY: tags |
| 60 tags: | 62 tags: |
| 61 -rm tags | 63 -rm tags |
| 62 find . -name "*.go" -print -or -name "*.js" -or -name "*.html" | xargs c
tags --append | 64 find . -name "*.go" -print -or -name "*.js" -or -name "*.html" | xargs c
tags --append |
| 63 | 65 |
| 64 include ../webtools/webtools.mk | 66 include ../webtools/webtools.mk |
| OLD | NEW |