2017-04-08 20:43:46 -04:00
|
|
|
|
2018-10-11 11:33:09 -04:00
|
|
|
TSC=./node_modules/typescript/bin/tsc
|
|
|
|
|
2017-05-11 08:23:17 -04:00
|
|
|
all: src/cpu/z80fast.js
|
|
|
|
|
|
|
|
src/cpu/z80.js: src/cpu/z80.coffee
|
|
|
|
coffee -c $<
|
|
|
|
|
|
|
|
src/cpu/z80fast.js: src/cpu/buildz80.js src/cpu/z80.js
|
|
|
|
node $< > $@
|
|
|
|
|
2017-04-08 20:43:46 -04:00
|
|
|
check:
|
|
|
|
closure-compiler src/*.js src/cpu/*.js src/platform/*.js > /dev/null
|
|
|
|
|
|
|
|
lint:
|
|
|
|
gjslint -r src
|
|
|
|
|
2017-04-19 14:26:46 -04:00
|
|
|
# https://github.com/Kentzo/git-archive-all
|
2017-04-08 20:43:46 -04:00
|
|
|
archive:
|
|
|
|
mkdir -p release
|
2018-12-15 14:58:11 -05:00
|
|
|
git-archive-all --prefix 8bitworkshop-latest/ release/8bitworkshop-latest.zip
|
2017-04-19 14:26:46 -04:00
|
|
|
git archive --prefix 8bitworkshop- -o release/8bitworkshop-tools.zip HEAD tools
|
|
|
|
|
2017-04-08 20:43:46 -04:00
|
|
|
|
2018-03-23 15:05:08 -06:00
|
|
|
web:
|
|
|
|
ifconfig | grep inet
|
2018-11-29 21:41:55 -05:00
|
|
|
python3 scripts/serveit.py 2>> http.out
|
2018-03-23 15:05:08 -06:00
|
|
|
|
2018-07-04 09:36:32 -06:00
|
|
|
tsweb:
|
|
|
|
ifconfig | grep inet
|
2018-10-11 11:33:09 -04:00
|
|
|
$(TSC) -w &
|
2018-11-29 21:41:55 -05:00
|
|
|
python3 scripts/serveit.py 2>> http.out
|