Changeset 278 for trunk/openjdk/hotspot/make/linux/Makefile
- Timestamp:
- Mar 26, 2011, 8:39:20 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:ignore
-
old new 1 1 build 2 build-product-release
-
-
Property svn:mergeinfo
set to
/branches/vendor/oracle/openjdk6/b22 merged eligible /branches/vendor/oracle/openjdk6/current merged eligible
- Property svn:ignore
-
trunk/openjdk/hotspot/make/linux/Makefile
r2 r278 1 1 # 2 # Copyright 1999-2008 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # … … 17 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 18 18 # 19 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,20 # CA 95054 USA or visit www.sun.com if you need additional information or21 # have anyquestions.19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 20 # or visit www.oracle.com if you need additional information or have any 21 # questions. 22 22 # 23 23 # … … 169 169 # productzero zero <os>_<arch>_zero/product 170 170 # 171 # debugshark shark <os>_<arch>_shark/debug 172 # fastdebugshark shark <os>_<arch>_shark/fastdebug 173 # jvmgshark shark <os>_<arch>_shark/jvmg 174 # optimizedshark shark <os>_<arch>_shark/optimized 175 # profiledshark shark <os>_<arch>_shark/profiled 176 # productshark shark <os>_<arch>_shark/product 177 # 171 178 # What you get with each target: 172 179 # … … 192 199 SUBDIRS_CORE = $(addprefix $(OSNAME)_$(BUILDARCH)_core/,$(TARGETS)) 193 200 SUBDIRS_ZERO = $(addprefix $(OSNAME)_$(VARIANTARCH)_zero/,$(TARGETS)) 201 SUBDIRS_SHARK = $(addprefix $(OSNAME)_$(VARIANTARCH)_shark/,$(TARGETS)) 194 202 195 203 TARGETS_C2 = $(TARGETS) … … 198 206 TARGETS_CORE = $(addsuffix core,$(TARGETS)) 199 207 TARGETS_ZERO = $(addsuffix zero,$(TARGETS)) 208 TARGETS_SHARK = $(addsuffix shark,$(TARGETS)) 200 209 201 210 BUILDTREE_MAKE = $(GAMMADIR)/make/$(OSNAME)/makefiles/buildtree.make … … 214 223 @echo " $(TARGETS_CORE)" 215 224 @echo " $(TARGETS_ZERO)" 225 @echo " $(TARGETS_SHARK)" 216 226 217 227 checks: check_os_version check_j2se_version … … 267 277 $(BUILDTREE) VARIANT=zero VARIANTARCH=$(VARIANTARCH) 268 278 279 $(SUBDIRS_SHARK): $(BUILDTREE_MAKE) platform_zero 280 $(QUIETLY) $(MAKE) -f $(GAMMADIR)/make/$(OSNAME)/Makefile checks 281 $(BUILDTREE) VARIANT=shark VARIANTARCH=$(VARIANTARCH) 282 269 283 platform_zero: $(GAMMADIR)/make/$(OSNAME)/platform_zero.in 270 284 $(SED) 's/@ZERO_ARCHDEF@/$(ZERO_ARCHDEF)/g;s/@ZERO_LIBARCH@/$(ZERO_LIBARCH)/g;' < $< > $@ … … 305 319 ifdef INSTALL 306 320 cd $(OSNAME)_$(VARIANTARCH)_zero/$(patsubst %zero,%,$@) && $(MAKE) $(MFLAGS) install 321 endif 322 323 $(TARGETS_SHARK): $(SUBDIRS_SHARK) 324 cd $(OSNAME)_$(VARIANTARCH)_shark/$(patsubst %shark,%,$@) && $(MAKE) $(MFLAGS) 325 cd $(OSNAME)_$(VARIANTARCH)_shark/$(patsubst %shark,%,$@) && ./test_gamma 326 ifdef INSTALL 327 cd $(OSNAME)_$(VARIANTARCH)_shark/$(patsubst %shark,%,$@) && $(MAKE) $(MFLAGS) install 307 328 endif 308 329 … … 312 333 treecore: $(SUBDIRS_CORE) 313 334 treezero: $(SUBDIRS_ZERO) 335 treeshark: $(SUBDIRS_SHARK) 314 336 315 337 # Doc target. This is the same for all build options. … … 328 350 zero: jvmgzero productzero 329 351 352 shark: jvmgshark productshark 353 330 354 clean_docs: 331 355 rm -rf $(SUBDIR_DOCS) 332 356 333 clean_compiler1 clean_compiler2 clean_core clean_zero :357 clean_compiler1 clean_compiler2 clean_core clean_zero clean_shark: 334 358 rm -rf $(OSNAME)_$(BUILDARCH)_$(subst clean_,,$@) 335 359 336 clean: clean_compiler2 clean_compiler1 clean_core clean_zero clean_ docs360 clean: clean_compiler2 clean_compiler1 clean_core clean_zero clean_shark clean_docs 337 361 338 362 include $(GAMMADIR)/make/$(OSNAME)/makefiles/cscope.make … … 340 364 #------------------------------------------------------------------------------- 341 365 342 .PHONY: $(TARGETS_C2) $(TARGETS_C1) $(TARGETS_CORE) $(TARGETS_ZERO) 343 .PHONY: tree tree1 treecore treezero 344 .PHONY: all compiler1 compiler2 core zero 345 .PHONY: clean clean_compiler1 clean_compiler2 clean_core clean_zero docs clean_docs366 .PHONY: $(TARGETS_C2) $(TARGETS_C1) $(TARGETS_CORE) $(TARGETS_ZERO) $(TARGETS_SHARK) 367 .PHONY: tree tree1 treecore treezero treeshark 368 .PHONY: all compiler1 compiler2 core zero shark 369 .PHONY: clean clean_compiler1 clean_compiler2 clean_core clean_zero clean_shark docs clean_docs 346 370 .PHONY: checks check_os_version check_j2se_version
Note:
See TracChangeset
for help on using the changeset viewer.