16198
|
1 |
#
|
|
2 |
# Copyright (c) 2010, 2013, 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
|
|
23 |
# questions.
|
|
24 |
#
|
|
25 |
|
|
26 |
# This must be the first rule
|
|
27 |
default: all
|
|
28 |
|
|
29 |
-include $(SPEC)
|
|
30 |
include MakeBase.gmk
|
|
31 |
include JavaCompilation.gmk
|
|
32 |
|
|
33 |
# TODO: build-infra, move this to SPEC
|
|
34 |
JAVAC_JARS ?= "-Xbootclasspath/p:$(LANGTOOLS_OUTPUTDIR)/dist/bootstrap/lib/javac.jar" \
|
|
35 |
-jar $(LANGTOOLS_OUTPUTDIR)/dist/bootstrap/lib/javac.jar
|
|
36 |
|
|
37 |
JDK_CLASSES := $(JDK_OUTPUTDIR)/classes
|
|
38 |
# TODO: Remove dependency?
|
|
39 |
DYNALINK_JAR := $(NASHORN_TOPDIR)/build/dynalink/dynalink.jar
|
|
40 |
|
|
41 |
NASHORN_JAR := $(NASHORN_DIST)/nashorn.jar
|
16200
|
42 |
NASHORN_VERSION := $(JDK_VERSION)
|
|
43 |
NASHORN_FULL_VERSION := $(FULL_VERSION)
|
|
44 |
|
|
45 |
ifdef MILESTONE
|
|
46 |
ifeq ($(MILESTONE),internal)
|
|
47 |
NASHORN_VERSION = $(FULL_VERSION)
|
|
48 |
endif
|
|
49 |
endif
|
16198
|
50 |
|
|
51 |
# Need to use source and target 7 for nasgen to work.
|
|
52 |
$(eval $(call SetupJavaCompiler,COMPILER_SETUP,\
|
|
53 |
JVM:=$(JAVA),\
|
|
54 |
JAVAC:=$(JAVAC_JARS),\
|
|
55 |
FLAGS:=-g -source 7 -target 7 -bootclasspath $(JDK_CLASSES),\
|
|
56 |
SERVER_DIR:=$(SJAVAC_SERVER_DIR),\
|
|
57 |
SERVER_JVM:=$(SJAVAC_SERVER_JAVA)))
|
|
58 |
|
|
59 |
# Build nashorn into intermediate directory
|
|
60 |
$(eval $(call SetupJavaCompilation,BUILD_NASHORN,\
|
|
61 |
SETUP:=COMPILER_SETUP,\
|
|
62 |
SRC:=$(NASHORN_TOPDIR)/src,\
|
|
63 |
COPY:=.properties .js,\
|
|
64 |
BIN:=$(NASHORN_OUTPUTDIR)/nashorn_classes,\
|
|
65 |
ADD_JAVAC_FLAGS:=-cp $(DYNALINK_JAR)))
|
|
66 |
|
|
67 |
# Build nasgen
|
|
68 |
$(eval $(call SetupJavaCompilation,BUILD_NASGEN,\
|
|
69 |
SETUP:=COMPILER_SETUP,\
|
|
70 |
SRC:=$(NASHORN_TOPDIR)/buildtools/nasgen/src,\
|
|
71 |
BIN:=$(NASHORN_OUTPUTDIR)/nasgen_classes,\
|
|
72 |
ADD_JAVAC_FLAGS:=-cp $(NASHORN_OUTPUTDIR)/nashorn_classes))
|
|
73 |
|
|
74 |
# Nasgen needs nashorn classes
|
|
75 |
$(BUILD_NASGEN): $(BUILD_NASHORN)
|
|
76 |
|
|
77 |
# Copy classes to final classes dir and run nasgen to modify classes in jdk.nashorn.internal.objects package
|
|
78 |
# Finally rename classes in jdk.nashorn.internal.objects package
|
|
79 |
$(NASHORN_OUTPUTDIR)/classes/_the.nasgen.run: $(BUILD_NASGEN)
|
|
80 |
$(ECHO) Running nasgen
|
|
81 |
$(MKDIR) -p $(@D)
|
|
82 |
$(RM) -rf $(@D)/jdk $(@D)/netscape
|
|
83 |
$(CP) -R -p $(NASHORN_OUTPUTDIR)/nashorn_classes/* $(@D)/
|
|
84 |
$(JDK_OUTPUTDIR)/bin/java \
|
|
85 |
-cp $(NASHORN_OUTPUTDIR)/nasgen_classes$(PATH_SEP)$(NASHORN_OUTPUTDIR)/nashorn_classes \
|
|
86 |
jdk.nashorn.internal.tools.nasgen.Main $(@D) jdk.nashorn.internal.objects $(@D)
|
|
87 |
for f in `$(FIND) $(@D)/jdk/nashorn/internal/objects/ -name "*.class"`; do \
|
|
88 |
mv "$$f" `$(ECHO) "$$f" | $(SED) "s/\.class$$/\.clazz/"`; \
|
|
89 |
done
|
|
90 |
$(TOUCH) $@
|
|
91 |
|
|
92 |
# Unpack dynalink.jar for inclusion in nashorn.jar
|
|
93 |
$(NASHORN_OUTPUTDIR)/classes/_the.dynalink.unpacked: $(DYNALINK_JAR)
|
|
94 |
$(ECHO) Unpacking dynalink.jar
|
|
95 |
$(MKDIR) -p $(@D)
|
|
96 |
$(RM) -rf $(@D)/org
|
|
97 |
$(UNZIP) -q $(DYNALINK_JAR) -x "META-INF*" -d $(@D)
|
|
98 |
$(TOUCH) $@
|
|
99 |
|
|
100 |
# Version file needs to be processed with version numbers
|
|
101 |
VERSION_FILE := $(NASHORN_OUTPUTDIR)/classes/jdk/nashorn/internal/runtime/resources/version.properties
|
|
102 |
# Needs to happen after nasgen run since nasgen run deletes it
|
|
103 |
$(VERSION_FILE): $(NASHORN_OUTPUTDIR)/classes/_the.nasgen.run
|
|
104 |
$(VERSION_FILE): $(NASHORN_TOPDIR)/src/jdk/nashorn/internal/runtime/resources/version.properties-template
|
|
105 |
$(ECHO) Creating version.properties
|
|
106 |
$(MKDIR) -p $(@D)
|
16200
|
107 |
$(CAT) $< | $(SED) -e 's/$$(FULL_VERSION)/$(NASHORN_FULL_VERSION)/g' \
|
16198
|
108 |
-e 's/$$(RELEASE)/$(NASHORN_VERSION)/g' \
|
|
109 |
-e '/^#.*$$/d' -e '/^$$/d' > $@
|
|
110 |
|
|
111 |
|
16200
|
112 |
MANIFEST_ATTRIBUTES:=Name: jdk/nashorn/\nImplementation-Title: Oracle Nashorn\nImplementation-Version: $(NASHORN_FULL_VERSION)
|
16198
|
113 |
|
|
114 |
# Create nashorn.jar from the final classes dir
|
|
115 |
$(eval $(call SetupArchive,BUILD_NASHORN_JAR,\
|
|
116 |
$(NASHORN_OUTPUTDIR)/classes/_the.nasgen.run \
|
|
117 |
$(NASHORN_OUTPUTDIR)/classes/_the.dynalink.unpacked \
|
|
118 |
$(VERSION_FILE),\
|
|
119 |
SRCS:=$(NASHORN_OUTPUTDIR)/classes,\
|
|
120 |
SUFFIXES:=.class .clazz .js .properties Factory,\
|
|
121 |
MANIFEST:=$(NASHORN_TOPDIR)/src/META-INF/MANIFEST.MF,\
|
|
122 |
EXTRA_MANIFEST_ATTR:=$(MANIFEST_ATTRIBUTES),\
|
|
123 |
SKIP_METAINF:=true,\
|
|
124 |
JAR:=$(NASHORN_JAR)))
|
|
125 |
|
|
126 |
all: $(NASHORN_JAR)
|
16200
|
127 |
|
16198
|
128 |
.PHONY: all
|