9 lines
69 B
Makefile
9 lines
69 B
Makefile
|
all:
|
||
|
gcc main.c -lraylib -o rope
|
||
|
|
||
|
run: all
|
||
|
./rope
|
||
|
|
||
|
clean:
|
||
|
rm rope
|