10 lines
97 B
Makefile
10 lines
97 B
Makefile
|
all:
|
||
|
gcc main.c -lraylib
|
||
|
|
||
|
run: all
|
||
|
./a.out
|
||
|
mpv ./output.mp4
|
||
|
|
||
|
clean:
|
||
|
rm -f ./a.out output.mp4
|