Skip to content

Commit 04968a0

Browse files
committed
Fix examples Makefile for PLATFORM_WEB
1 parent 728ccc9 commit 04968a0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

examples/Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,11 @@ ifeq ($(TARGET_PLATFORM),PLATFORM_ANDROID)
197197
MAKE = mingw32-make
198198
endif
199199
ifeq ($(TARGET_PLATFORM),PLATFORM_WEB)
200-
MAKE = mingw32-make
200+
ifneq (, $(shell type emmake))
201+
MAKE = emmake make
202+
else
203+
MAKE = mingw32-make
204+
endif
201205
endif
202206

203207
# Define compiler flags: CFLAGS

0 commit comments

Comments
 (0)