From 2afd561474901a77198fb2c1a7bdb518e824ea78 Mon Sep 17 00:00:00 2001 From: Jan Eitzinger Date: Wed, 5 Nov 2025 10:37:23 +0100 Subject: [PATCH] Cleanup and fix distclean target --- PoissonSolver/2D-seq/.clangd | 3 --- PoissonSolver/2D-seq/Makefile | 3 ++- 2 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 PoissonSolver/2D-seq/.clangd diff --git a/PoissonSolver/2D-seq/.clangd b/PoissonSolver/2D-seq/.clangd deleted file mode 100644 index 176d6aa..0000000 --- a/PoissonSolver/2D-seq/.clangd +++ /dev/null @@ -1,3 +0,0 @@ -CompileFlags: - Add: [-D_GNU_SOURCE,-DANIMATE,-DARRAY_ALIGNMENT=64,-I./src/includes,-I./CLANG, -Ofast,-std=c99, -xc] - Compiler: clang diff --git a/PoissonSolver/2D-seq/Makefile b/PoissonSolver/2D-seq/Makefile index 095b573..c33c739 100644 --- a/PoissonSolver/2D-seq/Makefile +++ b/PoissonSolver/2D-seq/Makefile @@ -52,7 +52,8 @@ clean: distclean: clean $(info ===> DIST CLEAN) - @rm -f $(TARGET) + @rm -f $(TARGET) .clangd compile_commands.json + @rm -rf .cache info: $(info $(CFLAGS))