alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Java example source code file (Bundles.gmk)

This example Java source code file (Bundles.gmk) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

bundle_info, bundle_vendor, creating, echo, jdk_bundle_dir, jdk_version, jre_bundle_dir, license, mkdir, oracle, output_root, spec, this

The Bundles.gmk Java example source code

#
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation.  Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
# or visit www.oracle.com if you need additional information or have any
# questions.
#

include $(SPEC)
include MakeBase.gmk

default: bundles

# Only macosx has bundles defined.
ifeq ($(OPENJDK_TARGET_OS), macosx)

  bundles: jre-bundle jdk-bundle

  # JDK_BUNDLE_DIR and JRE_BUNDLE_DIR are defined in SPEC.

  MACOSX_SRC := $(JDK_TOPDIR)/src/macosx

  # All these OPENJDK checks are needed since there is no coherency between
  # these values in open and closed. Should probably be fixed.
  ifndef OPENJDK
    BUNDLE_ID := $(MACOSX_BUNDLE_ID_BASE).$(JDK_MINOR_VERSION)u$(JDK_UPDATE_VERSION)
  else
    BUNDLE_ID := $(MACOSX_BUNDLE_ID_BASE)
  endif
  BUNDLE_ID_JRE := $(BUNDLE_ID).jre
  BUNDLE_ID_JDK := $(BUNDLE_ID).jdk

  BUNDLE_NAME := $(MACOSX_BUNDLE_NAME_BASE) $(JDK_MINOR_VERSION)
  BUNDLE_NAME_JRE := $(BUNDLE_NAME)
  BUNDLE_NAME_JDK := $(BUNDLE_NAME)

  ifndef OPENJDK
    BUNDLE_INFO := $(MACOSX_BUNDLE_NAME_BASE) $(JDK_VERSION)
  else
    BUNDLE_INFO := $(MACOSX_BUNDLE_NAME_BASE) ($(JDK_VERSION))
  endif
  BUNDLE_INFO_JRE := $(BUNDLE_INFO)
  BUNDLE_INFO_JDK := $(BUNDLE_INFO)

  BUNDLE_PLATFORM_VERSION := $(JDK_MAJOR_VERSION).$(JDK_MINOR_VERSION)
  BUNDLE_VERSION := $(JDK_VERSION)
  ifeq ($(COMPANY_NAME), N/A)
    BUNDLE_VENDOR := UNDEFINED
  else
    BUNDLE_VENDOR := $(COMPANY_NAME)
  endif


  JDK_FILE_LIST := $(shell $(FIND) $(JDK_IMAGE_DIR))
  JRE_FILE_LIST := $(shell $(FIND) $(JRE_IMAGE_DIR))

  JDK_TARGET_LIST := $(subst $(JDK_IMAGE_DIR)/,$(JDK_BUNDLE_DIR)/Home/,$(JDK_FILE_LIST))
  JRE_TARGET_LIST := $(subst $(JRE_IMAGE_DIR)/,$(JRE_BUNDLE_DIR)/Home/,$(JRE_FILE_LIST))

  # The old builds implementation of this did not preserve symlinks so
  # make sure they are followed and the contents copied instead.
  # To fix this, remove -L
  # Copy empty directories (jre/lib/applet).
  $(JDK_BUNDLE_DIR)/Home/%: $(JDK_IMAGE_DIR)/%
	$(ECHO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)
	$(MKDIR) -p $(@D)
	if [ -d "$<" ]; then $(MKDIR) -p $@; else $(CP) -f -R -L '$<' '$@'; fi

  $(JRE_BUNDLE_DIR)/Home/%: $(JRE_IMAGE_DIR)/%
	$(ECHO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@)
	$(MKDIR) -p $(@D)
	if [ -d "$<" ]; then $(MKDIR) -p $@; else $(CP) -f -R -L '$<' '$@'; fi

  $(JDK_BUNDLE_DIR)/MacOS/libjli.dylib:
	$(ECHO) Creating link $(patsubst $(OUTPUT_ROOT)/%,%,$@)
	$(MKDIR) -p $(@D)
	$(RM) $@
	$(LN) -s ../Home/jre/lib/jli/libjli.dylib $@

  $(JRE_BUNDLE_DIR)/MacOS/libjli.dylib:
	$(ECHO) Creating link $(patsubst $(OUTPUT_ROOT)/%,%,$@)
	$(MKDIR) -p $(@D)
	$(RM) $@
	$(LN) -s ../Home/lib/jli/libjli.dylib $@

  $(JDK_BUNDLE_DIR)/Info.plist: $(SPEC)
	$(ECHO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
	$(MKDIR) -p $(@D)
	$(SED) -e "s/@@ID@@/$(BUNDLE_ID_JDK)/g" \
	    -e "s/@@NAME@@/$(BUNDLE_NAME_JDK)/g" \
	    -e "s/@@INFO@@/$(BUNDLE_INFO_JDK)/g" \
	    -e "s/@@PLATFORM_VERSION@@/$(BUNDLE_PLATFORM_VERSION)/g" \
	    -e "s/@@VERSION@@/$(BUNDLE_VERSION)/g" \
	    -e "s/@@VENDOR@@/$(BUNDLE_VENDOR)/g" \
	    < $(MACOSX_SRC)/bundle/JDK-Info.plist > $@

  $(JRE_BUNDLE_DIR)/Info.plist: $(SPEC)
	$(ECHO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@)
	$(MKDIR) -p $(@D)
	$(SED) -e "s/@@ID@@/$(BUNDLE_ID_JRE)/g" \
	    -e "s/@@NAME@@/$(BUNDLE_NAME_JRE)/g" \
	    -e "s/@@INFO@@/$(BUNDLE_INFO_JRE)/g" \
	    -e "s/@@PLATFORM_VERSION@@/$(BUNDLE_PLATFORM_VERSION)/g" \
	    -e "s/@@VERSION@@/$(BUNDLE_VERSION)/g" \
	    -e "s/@@VENDOR@@/$(BUNDLE_VENDOR)/g" \
	    < $(MACOSX_SRC)/bundle/JRE-Info.plist > $@

  jdk-bundle: $(JDK_TARGET_LIST) $(JDK_BUNDLE_DIR)/MacOS/libjli.dylib \
      $(JDK_BUNDLE_DIR)/Info.plist
	$(SETFILE) -a B $(dir $(JDK_BUNDLE_DIR))

  jre-bundle: $(JRE_TARGET_LIST) $(JRE_BUNDLE_DIR)/MacOS/libjli.dylib \
      $(JRE_BUNDLE_DIR)/Info.plist
	$(SETFILE) -a B $(dir $(JRE_BUNDLE_DIR))

else # Not macosx

  bundles:
	$(ECHO) "No bundles defined for $(OPENJDK_TARGET_OS)"

endif # macosx

.PHONY: jdk-bundle jre-bundle bundles

Other Java examples (source code examples)

Here is a short list of links related to this Java Bundles.gmk source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.