turbolist/makefile

5 lines
91 B
Makefile
Raw Normal View History

2024-08-27 09:32:53 +02:00
debug:
g++ --std=c++17 main.cpp -g -o main
2024-08-27 09:32:53 +02:00
release:
g++ --std=c++17 main.cpp -O2 -o main