make/common/Release.gmk

Print this page




  42 # classes in the com.sun.java.swing.plaf packages, since we've always
  43 # allowed, and even advocated, extending them (see bug 6476749).
  44 #
  45 # This approach is NOT to be used as a general purpose way to avoid such
  46 # compiler warnings for non-core packages. The correct way is to document
  47 # the packages in NON_CORE_PKGS.gmk, and include them in the NON_CORE_PKGS
  48 # definition.
  49 #
  50 # Swing has taken this approach only as a temporary measure to avoid
  51 # the compiler warnings until we can properly document these packages.
  52 # This is covered under 6491853.
  53 EXCLUDE_PROPWARN_PKGS = com.sun.java.swing.plaf.windows  \
  54                         com.sun.java.swing.plaf.motif    \
  55                         com.sun.java.swing.plaf.gtk
  56 
  57 #
  58 # Include the exported private packages in ct.sym.
  59 # This is an interim solution until the ct.sym is replaced
  60 # with a new module system (being discussed for JDK 8).
  61 #
  62 EXPORTED_PRIVATE_PKGS = com.sun.servicetag \
  63                         com.oracle.net \
  64                         com.oracle.nio
  65 
  66 # 64-bit solaris has a few special cases. We define the variable
  67 # SOLARIS64 for use in this Makefile to easily test those cases
  68 ifeq ($(PLATFORM), solaris)
  69   ifeq ($(ARCH_DATA_MODEL), 64)
  70     SOLARIS64 = true
  71     IMAGE_BINDIR = bin/$(ARCH)
  72   endif
  73 endif
  74 
  75 JTG_DOCS            = $(JDK_TOPDIR)/src/solaris/doc
  76 
  77 ifeq ($(PLATFORM), macosx)
  78   include $(JDK_TOPDIR)/make/common/Release-$(PLATFORM).gmk
  79 endif
  80 
  81 # The base names of all the license and document files for the jdk and jre
  82 #   (These files get placed in the jdk and jre install images)
  83 ifdef OPENJDK




  42 # classes in the com.sun.java.swing.plaf packages, since we've always
  43 # allowed, and even advocated, extending them (see bug 6476749).
  44 #
  45 # This approach is NOT to be used as a general purpose way to avoid such
  46 # compiler warnings for non-core packages. The correct way is to document
  47 # the packages in NON_CORE_PKGS.gmk, and include them in the NON_CORE_PKGS
  48 # definition.
  49 #
  50 # Swing has taken this approach only as a temporary measure to avoid
  51 # the compiler warnings until we can properly document these packages.
  52 # This is covered under 6491853.
  53 EXCLUDE_PROPWARN_PKGS = com.sun.java.swing.plaf.windows  \
  54                         com.sun.java.swing.plaf.motif    \
  55                         com.sun.java.swing.plaf.gtk
  56 
  57 #
  58 # Include the exported private packages in ct.sym.
  59 # This is an interim solution until the ct.sym is replaced
  60 # with a new module system (being discussed for JDK 8).
  61 #
  62 EXPORTED_PRIVATE_PKGS = com.oracle.net \

  63                         com.oracle.nio
  64 
  65 # 64-bit solaris has a few special cases. We define the variable
  66 # SOLARIS64 for use in this Makefile to easily test those cases
  67 ifeq ($(PLATFORM), solaris)
  68   ifeq ($(ARCH_DATA_MODEL), 64)
  69     SOLARIS64 = true
  70     IMAGE_BINDIR = bin/$(ARCH)
  71   endif
  72 endif
  73 
  74 JTG_DOCS            = $(JDK_TOPDIR)/src/solaris/doc
  75 
  76 ifeq ($(PLATFORM), macosx)
  77   include $(JDK_TOPDIR)/make/common/Release-$(PLATFORM).gmk
  78 endif
  79 
  80 # The base names of all the license and document files for the jdk and jre
  81 #   (These files get placed in the jdk and jre install images)
  82 ifdef OPENJDK