Updated windows del command

This commit is contained in:
Jonathan Moallem 2020-11-29 18:40:09 +11:00
parent f2d4a606c3
commit 8da969e9f7

View File

@ -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