mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Add OS/2 autodetect to makefile
This commit is contained in:
parent
50b784c99e
commit
d991c43b73
1 changed files with 6 additions and 0 deletions
6
makefile
6
makefile
|
@ -67,6 +67,11 @@ TARGETOS = win32
|
|||
else
|
||||
|
||||
ifneq ($(CROSSBUILD),1)
|
||||
|
||||
ifneq ($(OS2_SHELL),)
|
||||
TARGETOS = win32
|
||||
else
|
||||
|
||||
UNAME = $(shell uname -a)
|
||||
|
||||
ifeq ($(firstword $(filter Linux,$(UNAME))),Linux)
|
||||
|
@ -106,6 +111,7 @@ BIGENDIAN=1
|
|||
endif
|
||||
endif # BIGENDIAN
|
||||
|
||||
endif # OS/2
|
||||
endif # CROSS_BUILD
|
||||
endif # Windows_NT
|
||||
|
||||
|
|
Loading…
Reference in a new issue