10 lines
165 B
Makefile
10 lines
165 B
Makefile
|
TIC := "tic80 --skip --fs ."
|
||
|
CART := "cart.wren"
|
||
|
|
||
|
run:
|
||
|
{{TIC}} {{CART}}
|
||
|
|
||
|
export:
|
||
|
mkdir --parents build
|
||
|
{{TIC}} --cmd "load {{CART}} & save build/cart.tic & exit"
|