anthracite/Makefile
Nicholas Orlowsky c9fdf3b85d
init commit
2023-09-06 16:44:29 -04:00

17 lines
205 B
Makefile

.PHONY: format
build:
g++ main.cpp -g -o anthracite
build-release:
g++ main.cpp -O2 -o anthracite
build-docker:
docker build . -t anthracite
run: build
./anthracite
format:
clang-format *.cpp -i