Quellcode durchsuchen

Improved Makefile clean on Windows

pull/1357/head
raysan5 vor 5 Jahren
Ursprung
Commit
090490389e
1 geänderte Dateien mit 5 neuen und 1 gelöschten Zeilen
  1. +5
    -1
      src/Makefile

+ 5
- 1
src/Makefile Datei anzeigen

@ -641,7 +641,11 @@ endif
# Clean everything
clean:
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
rm -fv *.o $(RAYLIB_RELEASE_PATH)/libraylib.a $(RAYLIB_RELEASE_PATH)/libraylib.bc $(RAYLIB_RELEASE_PATH)/libraylib.so*
endif

Laden…
Abbrechen
Speichern