comparison make/defs.make @ 14414:b83f7d608548

8023034: PPC64 (part 14): Implement AIX/PPC64 support in HotSpot makefiles Reviewed-by: kvn
author simonis
date Fri, 06 Sep 2013 20:08:29 +0200
parents faf0c78e906b
children 2b8e28fdf503
comparison
equal deleted inserted replaced
14413:7687c56b6693 14414:b83f7d608548
164 OS=bsd 164 OS=bsd
165 endif 165 endif
166 HOST := $(shell uname -n) 166 HOST := $(shell uname -n)
167 endif 167 endif
168 168
169 # If not SunOS, not Linux and not BSD, assume Windows 169 # If not SunOS, not Linux not BSD and not AIX, assume Windows
170 ifneq ($(OS), Linux) 170 ifneq ($(OS), Linux)
171 ifneq ($(OS), SunOS) 171 ifneq ($(OS), SunOS)
172 ifneq ($(OS), bsd) 172 ifneq ($(OS), bsd)
173 OSNAME=windows 173 ifneq ($(OS), AIX)
174 OSNAME=windows
175 else
176 OSNAME=aix
177 endif
174 else 178 else
175 OSNAME=bsd 179 OSNAME=bsd
176 endif 180 endif
177 else 181 else
178 OSNAME=solaris 182 OSNAME=solaris