From 8da969e9f7007c7ac9a573a1e75d2ce1034d907a Mon Sep 17 00:00:00 2001 From: Jonathan Moallem Date: Sun, 29 Nov 2020 18:40:09 +1100 Subject: [PATCH] Updated windows del command --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 37d6799..acc79d3 100644 --- a/Makefile +++ b/Makefile @@ -77,7 +77,6 @@ ifeq ($(platform), Windows) else mkdir -p build endif - # Create the build folder and compile the executable compile: build @@ -90,7 +89,7 @@ execute: # Clean up all relevant files clean: ifeq ($(platform), Windows) - del "${CURDIR}\build\*.exe" + del build else rm $(buildFile) endif