turbolist/makefile

5 lines
91 B
Makefile

debug:
g++ --std=c++17 main.cpp -g -o main
release:
g++ --std=c++17 main.cpp -O2 -o main