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