Fix examples Makefile for PLATFORM_WEB

This commit is contained in:
asdqwe 2024-10-24 22:52:28 -03:00
parent 728ccc96bc
commit 04968a055b

View File

@ -197,8 +197,12 @@ ifeq ($(TARGET_PLATFORM),PLATFORM_ANDROID)
MAKE = mingw32-make
endif
ifeq ($(TARGET_PLATFORM),PLATFORM_WEB)
ifneq (, $(shell type emmake))
MAKE = emmake make
else
MAKE = mingw32-make
endif
endif
# Define compiler flags: CFLAGS
#------------------------------------------------------------------------------------------------