8bitworkshop/Makefile

66 lines
2.2 KiB
Makefile
Raw Normal View History

2017-04-09 00:43:46 +00:00
TSC=./node_modules/typescript/bin/tsc --build
TMP=./tmp/dist
all:
patch -i meta/electron.diff -o electron.html
cp nanoasm/src/assembler.ts src/worker/
cp node_modules/jquery/dist/jquery.min.js ./jquery/
cp -r node_modules/bootstrap/dist/* ./bootstrap/
cp node_modules/bootstrap-tourist/*.css node_modules/bootstrap-tourist/*.js ./lib/
cp node_modules/clipboard/dist/clipboard.min.js ./lib/
cp node_modules/mousetrap/mousetrap*.min.js ./lib/
#cp node_modules/octokat/dist/octokat.js ./lib/
cp node_modules/split.js/dist/split.min.js ./lib/
cp node_modules/localforage/dist/localforage.min.js ./lib/
cp node_modules/jszip/dist/jszip.min.js ./lib/
cp node_modules/file-saver/dist/*.min.js ./lib/
2021-07-07 20:48:37 +00:00
cp node_modules/binaryen/index.js ./lib/binaryen.js
cp unicorn.js/dist/unicorn-arm.min.js ./unicorn.js/demos/externals/capstone-arm.min.js ./lib/
2020-12-08 16:32:46 +00:00
cp gif.js/dist/* ./lib/
cd jsnes && npm i
2019-09-28 01:50:41 +00:00
$(TSC) -v
$(TSC)
2021-06-21 16:41:54 +00:00
npm run mkdoc
dist:
rm -fr $(TMP) && mkdir -p $(TMP)
git archive HEAD | tar x -C $(TMP)
cp -rp gen $(TMP)
rm -r $(TMP)/doc $(TMP)/meta $(TMP)/scripts $(TMP)/test* $(TMP)/tools $(TMP)/.[a-z]* $(TMP)/ts*.json
rm -f $(TMP)/javatari && mkdir -p $(TMP)/javatari && cp javatari.js/release/javatari/* $(TMP)/javatari/
tar cf - `cat electron.html | egrep "^<(script|link)" | egrep -o '"([^"]+).(js|css)"' | cut -d '"' -f2` | tar x -C $(TMP)
%.dist:
./node_modules/.bin/electron-packager $(TMP) --icon meta/icons/8bitworkshop-icon-1024.icns --out ./release --overwrite --platform $*
package: dist darwin.dist win32.dist linux.dist
meta/electron.diff: index.html electron.html
-diff -u index.html electron.html > $@
web:
(ip addr || ifconfig) | grep inet
2019-08-31 19:36:50 +00:00
python3 scripts/serveit.py 2>> /dev/null #http.out
2018-07-04 15:36:32 +00:00
tsweb:
(ip addr || ifconfig) | grep inet
$(TSC) -w &
2019-08-31 19:36:50 +00:00
python3 scripts/serveit.py 2>> /dev/null #http.out
astrolibre.b64.txt: astrolibre.rom
lzg -9 $< | base64 -w 0 > $@
2019-11-09 17:02:33 +00:00
2021-05-21 17:00:30 +00:00
VERSION := $(shell git tag -l --points-at HEAD)
2021-06-01 20:27:43 +00:00
syncdev: dist
cp config.js $(TMP)
aws --profile pzp s3 sync --follow-symlinks $(TMP)/ s3://8bitworkshop.com/dev
syncprod: dist
2021-05-21 17:00:30 +00:00
@[ "${VERSION}" ] || ( echo ">> No version set at HEAD, tag it first"; exit 1 )
echo Version: $(VERSION)
cp config.js $(TMP)
2021-06-01 20:27:43 +00:00
aws --profile pzp s3 sync --follow-symlinks $(TMP)/ s3://8bitworkshop.com/v$(VERSION)