Add gmake switch to use gmake if it is present
gmake is expected to be the default on most platforms, but it needs to be explicitly specified on some systems.
This commit is contained in:
+6
-2
@@ -1,6 +1,10 @@
|
||||
all: gba_build native_build native_debug_build windows_release windows_debug
|
||||
ifneq ($(which gmake 2>&1),)
|
||||
MAKE=gmake -j
|
||||
else
|
||||
MAKE=make
|
||||
endif
|
||||
|
||||
MAKE=make -j
|
||||
all: gba_build native_build native_debug_build windows_release windows_debug
|
||||
|
||||
gba_build:
|
||||
@if [ -d gba-release ]; then \
|
||||
|
||||
Reference in New Issue
Block a user