1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 20:41:36 +00:00
8bitworkshop/Makefile

16 lines
413 B
Makefile
Raw Normal View History

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
2017-04-19 18:26:46 +00:00
git-archive-all --prefix 8bitworkshop-2.0/ release/8bitworkshop-2.0.zip # 2.0
#git-archive-all --prefix 8bitworkshop-1.1/ release/8bitworkshop-1.1.zip 1.1
git archive --prefix 8bitworkshop- -o release/8bitworkshop-tools.zip HEAD tools
2017-04-09 00:43:46 +00:00