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