12 lines
206 B
Makefile
12 lines
206 B
Makefile
set shell := ["fish", "-c"]
|
|
|
|
clean:
|
|
-rm *.p8l
|
|
|
|
save message:
|
|
git commit -m "{{message}}"
|
|
git push
|
|
|
|
build target:
|
|
pico8 -export index.html games/{{target}}.p8
|
|
zip -r {{target}}.zip index.html index.js
|