blob: cbdcda1f5bc9881b5b4fa1cf02a185eede2e7268 (
plain)
1
2
3
4
5
6
7
|
all:
zpy raylib_example.zpy -o raylib_example -f -lraylib -f -lm -i raylib.h
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
clean:
rm -rf fib_example raylib_example str_example spaceinvaders
|