From 6e302c6ee841259d2266c77c35de54fe0b68a79f Mon Sep 17 00:00:00 2001 From: Andrei Betlen Date: Sat, 10 Jun 2023 18:17:34 -0400 Subject: [PATCH] Update makefile and gitignore --- .gitignore | 2 ++ Makefile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index fb0b6c9..36ed7f7 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,9 @@ __pycache__/ # C extensions *.so *.dylib +*.metal *.dll +*.lib # Distribution / packaging .Python diff --git a/Makefile b/Makefile index d2f38da..66d93f3 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,9 @@ clean: - rm -rf _skbuild - rm llama_cpp/*.so - rm llama_cpp/*.dylib + - rm llama_cpp/*.metal - rm llama_cpp/*.dll + - rm llama_cpp/*.lib .PHONY: \ update \