Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build/
build*/
*.o
*.a
*.so
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ distclean: clean
@echo "Removing CMake cache and artifacts..."
@find . -name "CMakeCache.txt" -delete
@find . -name "CMakeFiles" -type d -exec rm -rf {} + 2>/dev/null || true
@find . -name "cmake_install.cmake" -delete
@find . -name "CTestTestfile.cmake" -delete
@find . -name "compile_commands.json" -delete
@find . -name ".cmake" -type d -exec rm -rf {} + 2>/dev/null || true
@find . -name "Testing" -type d -exec rm -rf {} + 2>/dev/null || true

Expand Down
Loading