[build] [web] Fix examples Makefile
for PLATFORM_WEB
(#4434)
* Fix examples Makefile for PLATFORM_WEB * Replace shell with assignment operator * Replace tab with spaces
This commit is contained in:
parent
204872de09
commit
8b36253e2f
1 changed files with 7 additions and 2 deletions
|
@ -197,7 +197,12 @@ ifeq ($(TARGET_PLATFORM),PLATFORM_ANDROID)
|
||||||
MAKE = mingw32-make
|
MAKE = mingw32-make
|
||||||
endif
|
endif
|
||||||
ifeq ($(TARGET_PLATFORM),PLATFORM_WEB)
|
ifeq ($(TARGET_PLATFORM),PLATFORM_WEB)
|
||||||
|
EMMAKE != type emmake
|
||||||
|
ifneq (, $(EMMAKE))
|
||||||
|
MAKE = emmake make
|
||||||
|
else
|
||||||
MAKE = mingw32-make
|
MAKE = mingw32-make
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Define compiler flags: CFLAGS
|
# Define compiler flags: CFLAGS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue