mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-12 10:07:00 +00:00
35 lines
580 B
Makefile
35 lines
580 B
Makefile
|
|
TSC=./node_modules/typescript/bin/tsc
|
|
|
|
all:
|
|
cp nanoasm/src/assembler.ts src/worker/
|
|
$(TSC)
|
|
cd jsnes && npm i
|
|
|
|
z80: 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
|
|
|
|
|
|
web:
|
|
ifconfig | grep inet
|
|
python3 scripts/serveit.py 2>> http.out
|
|
|
|
tsweb:
|
|
ifconfig | grep inet
|
|
$(TSC) -w &
|
|
python3 scripts/serveit.py 2>> http.out
|
|
|
|
astrolibre.b64.txt: astrolibre.rom
|
|
lzg -9 $< | base64 -w 0 > $@
|