mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 21:59:06 +01:00
9 lines
158 B
Makefile
9 lines
158 B
Makefile
|
CXX=clang++
|
||
|
CXXFLAGS=-std=c++20 -Wall -Wextra
|
||
|
|
||
|
main: format main.cpp
|
||
|
$(CXX) $(CXXFLAGS) -g main.cpp -o main
|
||
|
|
||
|
format:
|
||
|
clang-format -i -style=google main.cpp
|