1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-05-28 08:41:30 +00:00
8bitworkshop/Makefile
2018-12-21 15:51:09 -06:00

33 lines
672 B
Makefile

TSC=./node_modules/typescript/bin/tsc
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 $< > $@
check:
closure-compiler src/*.js src/cpu/*.js src/platform/*.js > /dev/null
lint:
gjslint -r src
# https://github.com/Kentzo/git-archive-all
archive:
mkdir -p release
git-archive-all --prefix 8bitworkshop-latest/ release/8bitworkshop-latest.zip
git archive --prefix 8bitworkshop- -o release/8bitworkshop-tools.zip HEAD tools
web:
ifconfig | grep inet
python3 scripts/serveit.py 2>> http.out
tsweb:
ifconfig | grep inet
$(TSC) -w &
python3 scripts/serveit.py 2>> http.out