Fix to build on FreeBSD

This commit is contained in:
2017-05-18 16:39:33 -05:00
parent de0005d5ee
commit 806325d649
2 changed files with 17 additions and 8 deletions

View File

@ -1,6 +1,10 @@
all: gba_build gba_debug_build native_build native_debug_build windows_release windows_debug
MAKE=make -j
ifneq ($(shell which gmake),)
MAKE="gmake -j"
else
MAKE="make -j"
endif
gba_build:
@if [ -d gba-release ]; then \