anthracite/Makefile

17 lines
205 B
Makefile
Raw Normal View History

2023-09-06 20:44:29 +00:00
.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