taqin/justfile

21 lines
448 B
Makefile
Raw Normal View History

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
2020-02-14 13:31:14 +01:00
test:
2020-02-20 13:22:26 +01:00
godot --debug --script {{src_dir}}/addons/gut/gut_cmdln.gd
2020-02-14 13:31:14 +01:00
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