fix production build

This commit is contained in:
Nicholas Orlowsky 2023-10-20 12:51:01 -04:00
parent 3dddee43f7
commit bdd12adfb4
No known key found for this signature in database
GPG key ID: BE7DF0188A405E2B

View file

@ -1,10 +1,12 @@
.PHONY: format lint build build-release build-docker run debug
build:
build-supplemental:
cd ./build && ./version.sh && python3 ./error_gen.py
build: build-supplemental
g++ main.cpp --std=c++20 -g -o ./anthracite
build-release:
build-release: build-supplemental
g++ main.cpp --std=c++20 -O3 -march=native -o ./anthracite
build-docker: