Updated windows del command
This commit is contained in:
parent
f2d4a606c3
commit
8da969e9f7
3
Makefile
3
Makefile
@ -78,7 +78,6 @@ else
|
||||
mkdir -p build
|
||||
endif
|
||||
|
||||
|
||||
# Create the build folder and compile the executable
|
||||
compile: build
|
||||
$(CXX) -std=c++17 -I include -L lib/$(platform) src/main.cpp -o $(buildFile) -l raylib $(options)
|
||||
@ -90,7 +89,7 @@ execute:
|
||||
# Clean up all relevant files
|
||||
clean:
|
||||
ifeq ($(platform), Windows)
|
||||
del "${CURDIR}\build\*.exe"
|
||||
del build
|
||||
else
|
||||
rm $(buildFile)
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user