| OLD | NEW |
| 1 BOWER_DIR=third_party/bower_components | 1 BOWER_DIR=third_party/bower_components |
| 2 | 2 |
| 3 # 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 |
| 4 # minified. These files should be either present in the project, brought | 4 # minified. These files should be either present in the project, brought |
| 5 # into third_party/bower_compoents via bower, or in node_modules. | 5 # into third_party/bower_compoents via bower, or in node_modules. |
| 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}/google-code-prettify/bin/prettify.min.js \ | 7 ${BOWER_DIR}/google-code-prettify/bin/prettify.min.js \ |
| 8 » ../res/js/common.js | 8 » ../res/js/common.js \ |
| 9 | 9 » ./res/js/docs.js |
| 10 | 10 |
| 11 default: core_js res/css/docs.css | 11 default: core_js res/css/docs.css |
| 12 go install -v ./go/docserver | 12 go install -v ./go/docserver |
| 13 | 13 |
| 14 res/css/docs.css: node_modules/lastupdate res/css/main.css ${BOWER_DIR}/google-c
ode-prettify/bin/prettify.min.css | 14 res/css/docs.css: node_modules/lastupdate res/css/main.css ${BOWER_DIR}/google-c
ode-prettify/bin/prettify.min.css |
| 15 cat res/css/main.css ${BOWER_DIR}/google-code-prettify/bin/prettify.min.
css | ./node_modules/.bin/autoprefixer -o res/css/docs.css | 15 cat res/css/main.css ${BOWER_DIR}/google-code-prettify/bin/prettify.min.
css | ./node_modules/.bin/autoprefixer -o res/css/docs.css |
| 16 | 16 |
| 17 release: default | 17 release: default |
| 18 ./build_release | 18 ./build_release |
| 19 | 19 |
| 20 include ../webtools/webtools.mk | 20 include ../webtools/webtools.mk |
| OLD | NEW |