Improved Makefile clean on Windows
This commit is contained in:
parent
921f0c02e2
commit
090490389e
@ -641,7 +641,11 @@ endif
|
|||||||
# Clean everything
|
# Clean everything
|
||||||
clean:
|
clean:
|
||||||
ifeq ($(PLATFORM_OS),WINDOWS)
|
ifeq ($(PLATFORM_OS),WINDOWS)
|
||||||
del *.o $(RAYLIB_RELEASE_PATH)/libraylib.a $(RAYLIB_RELEASE_PATH)/libraylib.bc $(RAYLIB_RELEASE_PATH)/libraylib.so
|
del *.o /s
|
||||||
|
cd $(RAYLIB_RELEASE_PATH)
|
||||||
|
del libraylib.a /s
|
||||||
|
del libraylibdll.a /s
|
||||||
|
del raylib.dll /s
|
||||||
else
|
else
|
||||||
rm -fv *.o $(RAYLIB_RELEASE_PATH)/libraylib.a $(RAYLIB_RELEASE_PATH)/libraylib.bc $(RAYLIB_RELEASE_PATH)/libraylib.so*
|
rm -fv *.o $(RAYLIB_RELEASE_PATH)/libraylib.a $(RAYLIB_RELEASE_PATH)/libraylib.bc $(RAYLIB_RELEASE_PATH)/libraylib.so*
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user