make/defs.make

Print this page
rev 5083 : 8023034: PPC64 (part 14): Implement AIX/PPC64 support in HotSpot makefiles

*** 164,179 **** OS=bsd endif HOST := $(shell uname -n) endif ! # If not SunOS, not Linux and not BSD, assume Windows ifneq ($(OS), Linux) ifneq ($(OS), SunOS) ifneq ($(OS), bsd) OSNAME=windows else OSNAME=bsd endif else OSNAME=solaris endif --- 164,183 ---- OS=bsd endif HOST := $(shell uname -n) endif ! # If not SunOS, not Linux not BSD and not AIX, assume Windows ifneq ($(OS), Linux) ifneq ($(OS), SunOS) ifneq ($(OS), bsd) + ifneq ($(OS), AIX) OSNAME=windows else + OSNAME=aix + endif + else OSNAME=bsd endif else OSNAME=solaris endif