From f26dc388dba5991f6d38dbd10ec12b524b3b8979 Mon Sep 17 00:00:00 2001 From: aryeh Date: Sun, 29 Nov 2020 21:15:41 +1100 Subject: [PATCH] Removed rmdir --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f6e9e4c..6a78590 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ endif # Build the raylib static library file and copy it into lib lib: submodules ifeq ($(platform), Windows) - cd vendor/raylib-cpp/vendor/raylib/src && $(MAKE) PLATFORM=PLATFORM_DESKTOP + cd vendor/raylib-cpp/vendor/raylib/src && "$(MAKE)" PLATFORM=PLATFORM_DESKTOP -mkdir lib\$(platform) -robocopy "vendor\raylib-cpp\vendor\raylib\src" "lib\Windows" libraylib.a else @@ -89,7 +89,7 @@ execute: # Clean up all relevant files clean: ifeq ($(platform), Windows) - rmdir /S build + del build\app.exe else rm $(buildFile) endif