8bitworkshop/Makefile

33 lines
670 B
Makefile
Raw Normal View History

2017-04-09 00:43:46 +00:00
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 $< > $@
2017-04-09 00:43:46 +00:00
check:
closure-compiler src/*.js src/cpu/*.js src/platform/*.js > /dev/null
lint:
gjslint -r src
2017-04-19 18:26:46 +00:00
# https://github.com/Kentzo/git-archive-all
2017-04-09 00:43:46 +00:00
archive:
mkdir -p release
2018-11-25 13:01:42 +00:00
git-archive-all --prefix 8bitworkshop-3.2.1/ release/8bitworkshop-3.2.1.zip
2017-04-19 18:26:46 +00:00
git archive --prefix 8bitworkshop- -o release/8bitworkshop-tools.zip HEAD tools
2017-04-09 00:43:46 +00:00
web:
ifconfig | grep inet
python3 scripts/serveit.py 2>> http.out
2018-07-04 15:36:32 +00:00
tsweb:
ifconfig | grep inet
$(TSC) -w &
python3 scripts/serveit.py 2>> http.out