taqin/justfile

20 lines
400 B
Makefile

# vim: set ft=make :
src_dir := "$PWD"
build_dir := "$PWD/build"
itchio := "damantisshrimp/taqin"
edit:
godot --editor --quiet &
export-android:
mkdir -p {{build_dir}}/android
godot --export "Android" {{build_dir}}/android
export-html:
mkdir -p {{build_dir}}/html
godot --export "HTML5" {{build_dir}}/html/index.html
deploy-html: export-html
butler push {{build_dir}}/html {{itchio}}:html