blob: 46cc72a1e6a46a26c0446a0de9c7a333b3aeb9e3 [file] [log] [blame]
#Use Vulcanize 1.0
VULCANIZE1=true
# The list of files we want to go into core.js, which is concat'd and
# minified. These files should be either present in the project, brought
# into third_party/bower_compoents via bower, or in node_modules.
BOWER_DIR = third_party/bower_components
CORE_SOURCE_FILES = ../../res/js/common.js
.PHONY: web
web: touch_elements core_js elements_html
# Build debug versions of core.js and elements.html.
.PHONY: debug
debug: clean_webtools debug_core_js debug_elements_html
node_modules: package.json
npm install
.PHONY: touch_elements
touch_elements:
rm -f res/js/core.js
touch elements.html
include ../../webtools/webtools.mk