blob: d3ee32760ded22cb045b660506b1d3563c0a262b (
plain)
1
2
3
4
5
6
7
8
|
all:
zpy spaceinvaders.zpy -o spaceinvaders -f -lraylib -f -lm -i raylib.h
zpy fib_example.zpy -o fib_example -f -ggdb
zpy str_example.zpy -o str_example -f -ggdb
zpy syntaxerr.zpy -o syntaxerr
clean:
rm -rf fib_example raylib_example str_example spaceinvaders syntaxerr tmp.zpy.c
|