mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 13:49:06 +01:00
8 lines
141 B
Makefile
8 lines
141 B
Makefile
CXX=clang++
|
|
CXXFLAGS=-std=c++20 -Wall -Wextra
|
|
|
|
%: format %.cpp
|
|
$(CXX) $(CXXFLAGS) -g $^ -o $@
|
|
|
|
format:
|
|
clang-format -i -style=google *.cpp
|