Changeset 278 for trunk/openjdk/hotspot/make/jprt.gmk
- 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/jprt.gmk
r2 r278 1 1 # 2 # Copyright 2006 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2006, 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 # … … 30 30 endif 31 31 32 ifeq ($(OSNAME),windows) 33 ZIPFLAGS=-q 34 else 35 # store symbolic links as the link 36 ZIPFLAGS=-q -y 37 endif 38 32 39 jprt_build_product: all_product copy_product_jdk export_product_jdk 33 40 ( $(CD) $(JDK_IMAGE_DIR) && \ 34 $(ZIPEXE) -q-r $(JPRT_ARCHIVE_BUNDLE) . )41 $(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . ) 35 42 36 43 jprt_build_fastdebug: all_fastdebug copy_fastdebug_jdk export_fastdebug_jdk 37 44 ( $(CD) $(JDK_IMAGE_DIR)/fastdebug && \ 38 $(ZIPEXE) -q-r $(JPRT_ARCHIVE_BUNDLE) . )45 $(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . ) 39 46 40 47 jprt_build_debug: all_debug copy_debug_jdk export_debug_jdk 41 48 ( $(CD) $(JDK_IMAGE_DIR)/debug && \ 42 $(ZIPEXE) -q-r $(JPRT_ARCHIVE_BUNDLE) . )49 $(ZIPEXE) $(ZIPFLAGS) -r $(JPRT_ARCHIVE_BUNDLE) . ) 43 50 44 51 .PHONY: jprt_build_product jprt_build_fastdebug jprt_build_debug
Note:
See TracChangeset
for help on using the changeset viewer.