From a34a32a9faea832f378f67d5121f430d0b96a925 Mon Sep 17 00:00:00 2001 From: Aditya R Date: Tue, 23 Aug 2022 22:23:48 +0530 Subject: [PATCH] makefile: remove windows specific libaries from vendor Modify `vendor-rm-windows` to remove windows specific libaries from vendor directory Signed-off-by: Aditya R --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 411203a..75ba52d 100644 --- a/Makefile +++ b/Makefile @@ -109,6 +109,8 @@ vendor: ## vendor everything into vendor/ vendor-rm-windows: if [ -d "vendor/winapi" ]; then \ rm -fr vendor/winapi*gnu*/lib/*.a; \ + rm -fr vendor/windows*/lib/*.a; \ + rm -fr vendor/windows*/lib/*.lib; \ fi .PHONY: vendor-tarball