< prev index next >

make/JrtfsJar.gmk

Print this page




  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
  23 # questions.
  24 #
  25 
  26 default: all
  27 
  28 include $(SPEC)
  29 include MakeBase.gmk
  30 include JavaCompilation.gmk
  31 include TextFileProcessing.gmk
  32 
  33 # This rule will be depended on due to the MANIFEST line
  34 $(eval $(call SetupTextFileProcessing, BUILD_JAVA_MANIFEST, \
  35   SOURCE_FILES := $(JDK_TOPDIR)/make/data/mainmanifest/manifest.mf, \
  36   OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/java-main-manifest.mf, \
  37   REPLACEMENTS := \
  38       @@RELEASE@@ => $(RELEASE) ; \

  39       @@COMPANY_NAME@@ => $(COMPANY_NAME) , \
  40 ))
  41 
  42 $(eval $(call SetupArchive,JRTFS_JAR, , \
  43     SRCS := $(BUILDTOOLS_OUTPUTDIR)/interim_jimage_classes, \
  44     JAR := $(SUPPORT_OUTPUTDIR)/jrt-fs.jar, \
  45     MANIFEST := $(SUPPORT_OUTPUTDIR)/java-main-manifest.mf))
  46 
  47 all: $(JRTFS_JAR)


  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
  23 # questions.
  24 #
  25 
  26 default: all
  27 
  28 include $(SPEC)
  29 include MakeBase.gmk
  30 include JavaCompilation.gmk
  31 include TextFileProcessing.gmk
  32 
  33 # This rule will be depended on due to the MANIFEST line
  34 $(eval $(call SetupTextFileProcessing, BUILD_JAVA_MANIFEST, \
  35   SOURCE_FILES := $(JDK_TOPDIR)/make/data/mainmanifest/manifest.mf, \
  36   OUTPUT_FILE := $(SUPPORT_OUTPUTDIR)/java-main-manifest.mf, \
  37   REPLACEMENTS := \
  38       @@VERSION_SPECIFICATION@@ => $(VERSION_SPECIFICATION) ; \
  39       @@VERSION_SHORT@@ => $(VERSION_SHORT) ; \
  40       @@COMPANY_NAME@@ => $(COMPANY_NAME) , \
  41 ))
  42 
  43 $(eval $(call SetupArchive,JRTFS_JAR, , \
  44     SRCS := $(BUILDTOOLS_OUTPUTDIR)/interim_jimage_classes, \
  45     JAR := $(SUPPORT_OUTPUTDIR)/jrt-fs.jar, \
  46     MANIFEST := $(SUPPORT_OUTPUTDIR)/java-main-manifest.mf))
  47 
  48 all: $(JRTFS_JAR)
< prev index next >