init commit
This commit is contained in:
commit
c9fdf3b85d
7 changed files with 216 additions and 0 deletions
16
Makefile
Normal file
16
Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue