5 lines
63 B
Makefile
5 lines
63 B
Makefile
|
|
debug:
|
||
|
|
gcc main.c -g -o main
|
||
|
|
release:
|
||
|
|
gcc main.c -O2 -o main
|