allpy
changeset 1168:b556c96c6719 tip
blocks3d/www Makefile: never check certificates of github, they are too confusing for wget
author | Daniil Alexeyevsky <dendik@kodomo.fbb.msu.ru> |
---|---|
date | Mon, 26 May 2014 17:20:29 +0400 |
parents | f1c6ed49f7e0 |
children | |
files | blocks3d/www/Makefile |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/blocks3d/www/Makefile Tue Aug 27 15:18:18 2013 +0400 1.2 +++ b/blocks3d/www/Makefile Mon May 26 17:20:29 2014 +0400 1.3 @@ -1,3 +1,5 @@ 1.4 +WGET = wget --no-check-certificate 1.5 + 1.6 build: input/conservative_groups.js input/crc32.js input/utf8_encode.js input/dechex.js input/json2.js 1.7 mkdir -p output 1.8 r2w 1.9 @@ -6,17 +8,17 @@ 1.10 python test.py > output/test.html 1.11 1.12 input/crc32.js: 1.13 - wget -O $@ \ 1.14 + $(WGET) -O $@ \ 1.15 http://github.com/kvz/phpjs/raw/master/functions/strings/crc32.js 1.16 1.17 input/utf8_encode.js: 1.18 - wget -O $@ \ 1.19 + $(WGET) -O $@ \ 1.20 https://raw.github.com/kvz/phpjs/master/functions/xml/utf8_encode.js 1.21 1.22 input/dechex.js: 1.23 - wget -O $@ \ 1.24 + $(WGET) -O $@ \ 1.25 https://raw.github.com/kvz/phpjs/master/functions/math/dechex.js 1.26 1.27 input/json2.js: 1.28 - wget -O $@ \ 1.29 + $(WGET) -O $@ \ 1.30 https://raw.github.com/douglascrockford/JSON-js/master/json2.js