author | never |
Fri, 09 Mar 2012 08:34:36 -0800 | |
changeset 12109 | e63abe40a95c |
parent 11678 | 9d22454e9dad |
child 12880 | 1062b2cf73d0 |
permissions | -rw-r--r-- |
6525 | 1 |
# |
11523
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
2 |
# Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. |
6525 | 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 |
BUILDDIR = ../.. |
|
27 |
PRODUCT = oracle |
|
11523
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
28 |
#SUBDIRS_MAKEFLAGS += JAVAC_MAX_WARNINGS=true |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
29 |
#SUBDIRS_MAKEFLAGS += JAVAC_WARNINGS_FATAL=true |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
30 |
#SUBDIRS_MAKEFLAGS += JAVAC_LINT_OPTIONS=-Xlint:all,-deprecation,-path |
6525 | 31 |
include $(BUILDDIR)/common/Defs.gmk |
32 |
||
11523
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
33 |
# build com/oracle/security/ucrypto on Solaris platform for non-OpenJDK builds |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
34 |
UCRYPTO = |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
35 |
ifndef OPENJDK |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
36 |
ifeq ($(PLATFORM), solaris) |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
37 |
UCRYPTO = security/ucrypto |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
38 |
endif |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
39 |
endif |
6525 | 40 |
|
11678
9d22454e9dad
7132386: makefile support for tracing/Java Flight Recorder framework phase I
rbackman
parents:
11523
diff
changeset
|
41 |
JFR = |
9d22454e9dad
7132386: makefile support for tracing/Java Flight Recorder framework phase I
rbackman
parents:
11523
diff
changeset
|
42 |
ifndef OPENJDK |
9d22454e9dad
7132386: makefile support for tracing/Java Flight Recorder framework phase I
rbackman
parents:
11523
diff
changeset
|
43 |
ifndef JAVASE_EMBEDDED |
9d22454e9dad
7132386: makefile support for tracing/Java Flight Recorder framework phase I
rbackman
parents:
11523
diff
changeset
|
44 |
JFR = jfr |
9d22454e9dad
7132386: makefile support for tracing/Java Flight Recorder framework phase I
rbackman
parents:
11523
diff
changeset
|
45 |
endif |
9d22454e9dad
7132386: makefile support for tracing/Java Flight Recorder framework phase I
rbackman
parents:
11523
diff
changeset
|
46 |
endif |
11523
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
47 |
|
11678
9d22454e9dad
7132386: makefile support for tracing/Java Flight Recorder framework phase I
rbackman
parents:
11523
diff
changeset
|
48 |
SUBDIRS = $(JFR) net nio util $(UCRYPTO) |
10325
b72c20cd583a
7047325: Internal API to improve management of direct buffers
coffeys
parents:
6525
diff
changeset
|
49 |
|
11523
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
50 |
include $(BUILDDIR)/common/Subdirs.gmk |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
51 |
|
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
52 |
all build clean clobber:: |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
53 |
$(SUBDIRS-loop) |
85131f3172a1
7088989: Improve the performance for T4 by utilizing the newly provided crypto APIs
valeriep
parents:
10325
diff
changeset
|
54 |