We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04968a0 commit 6d843feCopy full SHA for 6d843fe
examples/Makefile
@@ -197,7 +197,8 @@ ifeq ($(TARGET_PLATFORM),PLATFORM_ANDROID)
197
MAKE = mingw32-make
198
endif
199
ifeq ($(TARGET_PLATFORM),PLATFORM_WEB)
200
- ifneq (, $(shell type emmake))
+ EMMAKE != type emmake
201
+ ifneq (, $(EMMAKE))
202
MAKE = emmake make
203
else
204
@@ -455,7 +456,7 @@ ifeq ($(TARGET_PLATFORM),PLATFORM_DESKTOP_RGFW)
455
456
ifeq ($(PLATFORM_OS),OSX)
457
# Libraries for Debian GNU/Linux desktop compiling
458
# NOTE: Required packages: libegl1-mesa-dev
- LDLIBS = ../src/libraylib.a -lm
459
+ LDLIBS = ../src/libraylib.a -lm
460
LDLIBS += -framework Foundation -framework AppKit -framework OpenGL -framework CoreVideo
461
462
0 commit comments