diff options
| author | raysan5 <[email protected]> | 2022-02-12 18:06:21 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2022-02-12 18:06:21 +0100 |
| commit | d0008ae8cda8e0a7dda68b18c9e4be12fff00ae6 (patch) | |
| tree | 57cc90701119ef8b63518dbf394eb85eb6fc7998 /src | |
| parent | dd15531e25b73f1b3d37196effd5ac7685d8026e (diff) | |
| download | raylib-d0008ae8cda8e0a7dda68b18c9e4be12fff00ae6.tar.gz raylib-d0008ae8cda8e0a7dda68b18c9e4be12fff00ae6.zip | |
REVIEWED: Issue when compiling for PLATFORM_WEB
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index f543b0b5..c29701a3 100644 --- a/src/Makefile +++ b/src/Makefile @@ -106,6 +106,7 @@ ROOT = $(shell whoami) # By default we suppose we are working on Windows HOST_PLATFORM_OS ?= WINDOWS +PLATFORM_OS ?= WINDOWS # Determine PLATFORM_OS in case PLATFORM_DESKTOP selected ifeq ($(PLATFORM),PLATFORM_DESKTOP) @@ -741,8 +742,8 @@ clean_ANDROID: rm -fv *.o $(RAYLIB_RELEASE_PATH)/lib$(RAYLIB_LIB_NAME).a $(RAYLIB_RELEASE_PATH)/lib$(RAYLIB_LIB_NAME).bc $(RAYLIB_RELEASE_PATH)/lib$(RAYLIB_LIB_NAME).so* rm -rf $(ANDROID_TOOLCHAIN) $(NATIVE_APP_GLUE)/android_native_app_glue.o +# Set specific target variable clean_WINDOWS: SHELL := cmd.exe - clean_WINDOWS: del *.o /s cd $(RAYLIB_RELEASE_PATH) & \ |
