blog/files/algorithms/paths/bf-to-astar/makefile
github-actions[bot] 1d4ae5f520 deploy: 5549494f67
2024-01-03 14:14:53 +00:00

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