Review Makefile to support PLATFORM_RPI #1580

This commit is contained in:
raysan5 2021-02-09 15:42:03 +01:00
parent 00a0461c7a
commit 043eb5882b
4 changed files with 16 additions and 30 deletions

View file

@ -177,15 +177,12 @@ ifeq ($(PLATFORM),PLATFORM_WEB)
CC = emcc
endif
# Define default make program: Mingw32-make
MAKE = mingw32-make
# Define default make program
MAKE = make
ifeq ($(PLATFORM),PLATFORM_DESKTOP)
ifeq ($(PLATFORM_OS),LINUX)
MAKE = make
endif
ifeq ($(PLATFORM_OS),OSX)
MAKE = make
ifeq ($(PLATFORM_OS),WINDOWS)
MAKE = mingw32-make
endif
endif