simap/makefile
2024-09-29 20:52:18 +02:00

5 lines
79 B
Makefile

debug:
g++ main.cpp -g -Wall -o main
release:
g++ main.cpp -O2 -Wall -o main