From 37e257c48e350cf03c353c10d31e777f8d00123d Mon Sep 17 00:00:00 2001 From: sandyiscool Date: Thu, 15 Jun 2023 23:06:06 +0530 Subject: [PATCH] make : clean *.so files (#1857) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9a08d610b..66509cc33 100644 --- a/Makefile +++ b/Makefile @@ -259,7 +259,7 @@ libllama.so: llama.o ggml.o $(OBJS) $(CXX) $(CXXFLAGS) -shared -fPIC -o $@ $^ $(LDFLAGS) clean: - rm -vf *.o main quantize quantize-stats perplexity embedding benchmark-matmult save-load-state server vdot build-info.h + rm -vf *.o *.so main quantize quantize-stats perplexity embedding benchmark-matmult save-load-state server vdot build-info.h # # Examples