< prev index next >

make/Images.gmk

Print this page


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


  38 ############################################################################
  39 
  40 MAIN_MODULES += java.se java.smartcardio jdk.httpserver jdk.sctp \
  41                jdk.security.auth jdk.security.jgss jdk.pack200
  42 
  43 # providers
  44 PROVIDER_MODULES += jdk.charsets jdk.crypto.ec jdk.crypto.pkcs11 jdk.jvmstat jdk.localedata \
  45                jdk.naming.dns jdk.naming.rmi jdk.scripting.nashorn jdk.zipfs
  46 
  47 # tools
  48 TOOLS_MODULES += jdk.attach jdk.compiler jdk.dev jdk.javadoc jdk.jcmd jdk.jconsole \
  49                jdk.hotspot.agent jdk.hprof.agent jdk.jartool jdk.jdi jdk.jdwp.agent \
  50                jdk.policytool jdk.rmic jdk.xml.bind jdk.xml.ws
  51 
  52 ifeq ($(OPENJDK_TARGET_OS), windows)
  53   PROVIDER_MODULES += jdk.crypto.mscapi
  54 endif
  55 
  56 ifeq ($(OPENJDK_TARGET_OS), solaris)
  57   PROVIDER_MODULES += jdk.crypto.ucrypto




  58 endif
  59 
  60 ifeq ($(OPENJDK_TARGET_OS), macosx)
  61   MAIN_MODULES += jdk.deploy.osx
  62 endif
  63 
  64 JRE_MODULES := $(MAIN_MODULES) $(PROVIDER_MODULES)
  65 JDK_MODULES := $(JRE_MODULES) $(TOOLS_MODULES)
  66 
  67 # compact3 builds have additional modules
  68 JDK_COMPACT3_MODULES := java.compact3 java.smartcardio jdk.httpserver jdk.naming.dns \
  69                        jdk.naming.rmi jdk.sctp jdk.security.auth
  70 
  71 # Replacing double-comma with a single comma is to workaround the issue
  72 # with some version of make on windows that doesn't substitute spaces
  73 # with one comma properly as with make 4.0
  74 define SubstComma
  75   $(subst $(COMMA)$(COMMA),$(COMMA),$(subst $(SPACE),$(COMMA),$(strip $1)))
  76 endef
  77 JRE_MODULES_LIST := $(call SubstComma, $(JRE_MODULES))


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


  38 ############################################################################
  39 
  40 MAIN_MODULES += java.se java.smartcardio jdk.httpserver jdk.sctp \
  41                jdk.security.auth jdk.security.jgss jdk.pack200
  42 
  43 # providers
  44 PROVIDER_MODULES += jdk.charsets jdk.crypto.ec jdk.crypto.pkcs11 jdk.jvmstat jdk.localedata \
  45                jdk.naming.dns jdk.naming.rmi jdk.scripting.nashorn jdk.zipfs
  46 
  47 # tools
  48 TOOLS_MODULES += jdk.attach jdk.compiler jdk.dev jdk.javadoc jdk.jcmd jdk.jconsole \
  49                jdk.hotspot.agent jdk.hprof.agent jdk.jartool jdk.jdi jdk.jdwp.agent \
  50                jdk.policytool jdk.rmic jdk.xml.bind jdk.xml.ws
  51 
  52 ifeq ($(OPENJDK_TARGET_OS), windows)
  53   PROVIDER_MODULES += jdk.crypto.mscapi
  54 endif
  55 
  56 ifeq ($(OPENJDK_TARGET_OS), solaris)
  57   PROVIDER_MODULES += jdk.crypto.ucrypto
  58 endif
  59 
  60 ifeq ($(OPENJDK_TARGET_OS), windows)
  61   MAIN_MODULES += jdk.accessibility
  62 endif
  63 
  64 ifeq ($(OPENJDK_TARGET_OS), macosx)
  65   MAIN_MODULES += jdk.deploy.osx
  66 endif
  67 
  68 JRE_MODULES := $(MAIN_MODULES) $(PROVIDER_MODULES)
  69 JDK_MODULES := $(JRE_MODULES) $(TOOLS_MODULES)
  70 
  71 # compact3 builds have additional modules
  72 JDK_COMPACT3_MODULES := java.compact3 java.smartcardio jdk.httpserver jdk.naming.dns \
  73                        jdk.naming.rmi jdk.sctp jdk.security.auth
  74 
  75 # Replacing double-comma with a single comma is to workaround the issue
  76 # with some version of make on windows that doesn't substitute spaces
  77 # with one comma properly as with make 4.0
  78 define SubstComma
  79   $(subst $(COMMA)$(COMMA),$(COMMA),$(subst $(SPACE),$(COMMA),$(strip $1)))
  80 endef
  81 JRE_MODULES_LIST := $(call SubstComma, $(JRE_MODULES))


< prev index next >