Add Mac support.

This commit is contained in:
Steven Smith 2015-02-17 21:20:32 -08:00
parent 96f3e88faf
commit 7bb92b3f75
5 changed files with 9 additions and 2 deletions

View File

@ -70,8 +70,15 @@ ifeq ($(OS),Windows_NT)
MAKEROM = $(TOPDIR)/tools/makerom.exe
BANNERTOOL = $(TOPDIR)/tools/bannertool.exe
else
MAKEROM = $(TOPDIR)/tools/makerom
BANNERTOOL = $(TOPDIR)/tools/bannertool
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
MAKEROM = $(TOPDIR)/tools/makerom-linux
BANNERTOOL = $(TOPDIR)/tools/bannertool-linux
endif
ifeq ($(UNAME_S),Darwin)
MAKEROM = $(TOPDIR)/tools/makerom-mac
BANNERTOOL = $(TOPDIR)/tools/bannertool-mac
endif
endif

BIN
tools/bannertool-mac Executable file

Binary file not shown.

BIN
tools/makerom-mac Executable file

Binary file not shown.