init commit

This commit is contained in:
Nicholas Orlowsky 2023-09-06 16:44:29 -04:00
commit c9fdf3b85d
No known key found for this signature in database
GPG key ID: 24C84C4DDAD95065
7 changed files with 216 additions and 0 deletions

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
.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