Changeset 40 for trunk/openjdk/hotspot/make/defs.make
- Timestamp:
- Jun 23, 2010, 10:48:53 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/make/defs.make
r2 r40 20 20 # CA 95054 USA or visit www.sun.com if you need additional information or 21 21 # have any questions. 22 # 22 # 23 23 # 24 24 … … 117 117 endif 118 118 119 # On eComStation, OS is "ecs", ignore it to let uname be used 120 ifeq ($(OS),ecs) 121 OS := 122 endif 123 119 124 # Windows should have OS predefined 120 125 ifeq ($(OS),) … … 123 128 endif 124 129 125 # If not SunOS and not Linux , assume Windows130 # If not SunOS and not Linux and not OS/2, assume Windows 126 131 ifneq ($(OS), Linux) 127 132 ifneq ($(OS), SunOS) 128 OSNAME=windows 133 ifneq ($(OS), OS/2) 134 OSNAME=windows 135 else 136 OSNAME=os2 137 endif 129 138 else 130 139 OSNAME=solaris … … 170 179 endif 171 180 172 # The platform dependent defs.make defines platform specific variable such 181 # The platform dependent defs.make defines platform specific variable such 173 182 # as ARCH, EXPORT_LIST etc. We must place the include here after BOOTDIR is defined. 174 183 include $(GAMMADIR)/make/$(OSNAME)/makefiles/defs.make … … 178 187 # some definitions are common for both linux and solaris, 179 188 # so we put them here. 180 ifneq ($( OSNAME),windows)189 ifneq ($(filter-out windows os2,$(OSNAME)),) 181 190 ABS_OUTPUTDIR := $(shell mkdir -p $(OUTPUTDIR); $(CD) $(OUTPUTDIR); $(PWD)) 182 191 ABS_BOOTDIR := $(shell $(CD) $(BOOTDIR); $(PWD)) … … 192 201 193 202 # Use uname output for SRCARCH, but deal with platform differences. If ARCH 194 # is not explicitly listed below, it is treated as x86. 203 # is not explicitly listed below, it is treated as x86. 195 204 SRCARCH = $(ARCH/$(filter sparc sparc64 ia64 amd64 x86_64 zero,$(ARCH))) 196 205 ARCH/ = x86
Note:
See TracChangeset
for help on using the changeset viewer.