author | ykantser |
Mon, 07 Apr 2014 16:13:43 +0200 | |
changeset 23726 | 2f18b12acbdf |
parent 22703 | 322d8adeabe1 |
child 25874 | 83c19f00452c |
permissions | -rw-r--r-- |
14270 | 1 |
# |
22703
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
2 |
# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. |
14270 | 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 |
||
22703
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
33 |
include CommonLangtools.gmk |
14270 | 34 |
|
22703
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
35 |
# Setup the rules to build the interim langtools jar, which is compiled by |
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
36 |
# the boot javac and can be run on the boot jdk. This will be used to compile |
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
37 |
# the rest of the product. Include the Genstubs build tool in this compilation |
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
38 |
# as it will be used together with the interim javac. |
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
39 |
$(eval $(call SetupJavaCompilation,BUILD_INTERIM_LANGTOOLS, \ |
20623 | 40 |
SETUP := BOOT_JAVAC, \ |
41 |
DISABLE_SJAVAC := true, \ |
|
22703
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
42 |
SRC := $(LANGTOOLS_TOPDIR)/src/share/classes \ |
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
43 |
$(LANGTOOLS_OUTPUTDIR)/gensrc \ |
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
44 |
$(LANGTOOLS_TOPDIR)/make/tools, \ |
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
45 |
EXCLUDES := com/sun/tools/javac/nio compileproperties anttasks crules, \ |
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
46 |
COPY := $(RESOURCE_SUFFIXES), \ |
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
47 |
BIN := $(LANGTOOLS_OUTPUTDIR)/interim_classes, \ |
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
48 |
JAR := $(INTERIM_LANGTOOLS_JAR))) |
14270 | 49 |
|
22703
322d8adeabe1
8026773: Failing compilation in Corba does not fail the build
erikj
parents:
21888
diff
changeset
|
50 |
all: $(BUILD_INTERIM_LANGTOOLS) |