taqin/justfile

20 lines
400 B
Plaintext
Raw Normal View History

2020-04-13 17:54:22 +02:00
# vim: set ft=make :
2020-02-19 13:29:15 +01:00
src_dir := "$PWD"
2020-01-26 18:04:04 +01:00
build_dir := "$PWD/build"
itchio := "damantisshrimp/taqin"
edit:
2020-02-20 13:22:26 +01:00
godot --editor --quiet &
2020-01-26 18:04:04 +01:00
export-android:
mkdir -p {{build_dir}}/android
2020-02-20 13:22:26 +01:00
godot --export "Android" {{build_dir}}/android
2020-01-26 18:04:04 +01:00
export-html:
mkdir -p {{build_dir}}/html
2020-02-20 13:22:26 +01:00
godot --export "HTML5" {{build_dir}}/html/index.html
2020-01-26 18:04:04 +01:00
deploy-html: export-html
butler push {{build_dir}}/html {{itchio}}:html