Skip to content

Commit

Permalink
makefile [gnu++17] ⚙️
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasByr committed May 24, 2023
1 parent 4c02d21 commit 1aa0627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ docs:
.PHONY : format
format:
# we exclude the lib directory because it may contain very large files
@find . -type f \( -name "*.h" -o -name "*.hpp" -o -name "*.${FILEXT}" \) -not -path "./lib/*" -exec clang-format --style=file -i {} \;
@find . -type f \( -name "*.h" -o -name "*.hpp" -o -name "*.${FILEXT}" \) -not -path "./${LIB_PATH}/*" | xargs clang-format -i -style=file
@echo "\033[92mFormatting complete!\033[0m"

debug: CFLAGS += -Og -DDEBUG -g -ggdb -DYYDEBUG
Expand Down

0 comments on commit 1aa0627

Please sign in to comment.