From e169a960f6b762cbf9a4329bf3ee8a1ef988b453 Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Thu, 8 Jun 2023 00:40:04 -0400 Subject: [PATCH] Ensure make clean removes all shared library files --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ddae25f..d2f38da 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,9 @@ clean: - cd vendor/llama.cpp && make clean - cd vendor/llama.cpp && rm libllama.so - rm -rf _skbuild - - rm llama_cpp/libllama.so + - rm llama_cpp/*.so + - rm llama_cpp/*.dylib + - rm llama_cpp/*.dll .PHONY: \ update \