5 lines
79 B
Makefile
5 lines
79 B
Makefile
|
debug:
|
||
|
g++ main.cpp -g -Wall -o main
|
||
|
release:
|
||
|
g++ main.cpp -O2 -Wall -o main
|