1
0
Fork 0
mirror of https://github.com/mfocko/blog.git synced 2025-01-13 06:41:29 +01:00
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