diff options
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -140,6 +140,12 @@ endif ifneq ($(filter %86,$(UNAME_P)),) PLATFORM := x86 endif +ifneq ($(filter alpha,$(UNAME_M)),) +PLATFORM := alpha +endif +ifneq ($(filter alpha,$(UNAME_P)),) +PLATFORM := alpha +endif ifneq ($(filter arm%,$(UNAME_M)),) PLATFORM := arm endif @@ -155,6 +161,11 @@ endif ifneq ($(filter powerpc,$(UNAME_P)),) PLATFORM := powerpc endif +ifneq ($(filter mips64%,$(UNAME_M)),) +ifeq ($(shell getconf LONG_BIT),64) +PLATFORM := mips64 +endif +endif ifeq ($(firstword $(filter Linux,$(UNAME))),Linux) OS := linux endif |
