This commit is contained in:
Nicholas Orlowsky 2023-10-20 00:27:35 -04:00
parent f1868ceea5
commit dea773366e
No known key found for this signature in database
GPG key ID: BE7DF0188A405E2B
8 changed files with 103 additions and 24 deletions

View file

@ -1,10 +1,10 @@
.PHONY: format lint build build-release build-docker run debug
build:
g++ main.cpp -g -o ./anthracite
g++ main.cpp --std=c++20 -g -o ./anthracite
build-release:
g++ main.cpp -O3 -march=native -o ./anthracite
g++ main.cpp --std=c++20 -O3 -march=native -o ./anthracite
build-docker:
docker build . -t anthracite