mirror of
https://github.com/mfocko/blog.git
synced 2024-11-10 08:19:07 +01:00
8 lines
147 B
Makefile
8 lines
147 B
Makefile
CXX=c++
|
|
CXXFLAGS=-std=c++20 -Wall -Wextra -g
|
|
|
|
all: format
|
|
$(CXX) $(CXXFLAGS) main.cpp -o main
|
|
|
|
format:
|
|
clang-format -i -style=google *.hpp *.cpp
|