jdk/makefiles/CompileJavaClasses.gmk
author kvn
Tue, 05 Nov 2013 17:32:53 -0800
changeset 22594 32b6a490a856
parent 22593 938340719ac2
parent 21130 0f0b9c8f701a
child 22595 aaa6b141196c
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     2
# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     4
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    10
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    15
# accompanied this code).
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    16
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    20
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    23
# questions.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    24
#
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    25
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    26
default: all
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    27
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    28
include $(SPEC)
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    29
include MakeBase.gmk
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    30
include JavaCompilation.gmk
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    31
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    32
# Setup the java compilers for the JDK build.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    33
include Setup.gmk
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    34
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    35
JARS :=
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    36
EXFILES :=
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    37
EXCLUDES :=
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    38
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    39
##########################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    40
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    41
EXCLUDES += com/sun/pept \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    42
    com/sun/tools/example/trace \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    43
    com/sun/tools/example/debug/bdi \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    44
    com/sun/tools/example/debug/event \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    45
    com/sun/tools/example/debug/gui
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    46
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    47
ifdef OPENJDK
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    48
  EXCLUDES += sun/dc \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    49
      com/sun/jmx/snmp \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    50
      sun/management/snmp \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    51
      com/sun/script
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    52
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    53
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    54
ifndef OPENJDK
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    55
  # There exists two versions of this file...
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    56
  EXFILES := $(JDK_TOPDIR)/src/share/classes/javax/crypto/JarVerifier.java
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13586
diff changeset
    57
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    58
  ifeq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    59
    # This gets built on unix platforms implicitly in the old build even though
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    60
    # it's excluded in the closed build.
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    61
    EXCLUDES += sun/java2d/pisces
15324
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
    62
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    63
    # AccessBridge is compiled separately below.
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    64
    EXFILES += AccessBridge.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    65
        AccessBridgeLoader.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    66
        com/sun/java/accessibility/util/java/awt/ChoiceTranslator.java
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    67
    # This seems to never be built
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    68
    EXCLUDES += com/sun/java/accessibility/extensions
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    69
  endif
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13586
diff changeset
    70
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    71
endif
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    72
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    73
ifneq ($(OPENJDK_TARGET_OS), solaris)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    74
  # Exclude Solaris nio and two security related files in src/share/classes
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    75
  EXFILES += SolarisAclFileAttributeView.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    76
      SolarisFileStore.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    77
      SolarisFileSystem.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    78
      SolarisFileSystemProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    79
      SolarisNativeDispatcher.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    80
      SolarisUserDefinedFileAttributeView.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    81
      SolarisWatchService.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    82
      SolarisAclFileAttributeView.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    83
      SolarisLoginModule.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    84
      SolarisSystem.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    85
      sun/nio/ch/DevPollArrayWrapper.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    86
      sun/nio/ch/DevPollSelectorImpl.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    87
      sun/nio/ch/DevPollSelectorProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    88
      sun/nio/ch/EventPortSelectorImpl.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    89
      sun/nio/ch/EventPortSelectorProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    90
      sun/nio/ch/EventPortWrapper.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    91
      sun/nio/ch/SolarisAsynchronousChannelProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    92
      sun/nio/ch/SolarisEventPort.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    93
      sun/tools/attach/SolarisAttachProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    94
      sun/tools/attach/SolarisVirtualMachine.java
15128
296bb1620e00 8005355: build-infra: Java security signing (need a top-level make target).
erikj
parents: 14708
diff changeset
    95
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
    96
  EXCLUDES += com/oracle/security
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    97
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    98
21130
0f0b9c8f701a 8025673: [macosx] Disable X11 AWT toolkit
dholmes
parents: 21128
diff changeset
    99
EXFILES += WrapperGenerator.java
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   100
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   101
ifneq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   102
  # Exclude Window security related files in src/share/classes
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   103
  EXFILES += NTLoginModule.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   104
      NTSystem.java
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13586
diff changeset
   105
else
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   106
  EXFILES += UnixLoginModule.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   107
      UnixSystem.java
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   108
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   109
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   110
ifeq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   111
  # Don't build GTK L&F on Windows
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   112
  EXCLUDES += com/sun/java/swing/plaf/gtk
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   113
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   114
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   115
ifneq ($(OPENJDK_TARGET_OS), linux)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   116
  EXFILES += sun/tools/attach/LinuxAttachProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   117
      sun/tools/attach/LinuxVirtualMachine.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   118
      sun/nio/ch/EPoll.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   119
      sun/nio/ch/EPollArrayWrapper.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   120
      sun/nio/ch/EPollPort.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   121
      sun/nio/ch/EPollSelectorImpl.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   122
      sun/nio/ch/EPollSelectorProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   123
      sun/nio/ch/LinuxAsynchronousChannelProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   124
      sun/nio/fs/LinuxDosFileAttributeView.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   125
      sun/nio/fs/LinuxFileStore.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   126
      sun/nio/fs/LinuxFileSystem.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   127
      sun/nio/fs/LinuxFileSystemProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   128
      sun/nio/fs/MagicFileTypeDetector.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   129
      sun/nio/fs/LinuxNativeDispatcher.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   130
      sun/nio/fs/LinuxUserDefinedFileAttributeView.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   131
      sun/nio/fs/LinuxWatchService.java
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   132
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   133
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   134
ifneq ($(OPENJDK_TARGET_OS), macosx)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   135
  EXFILES += sun/nio/ch/BsdAsynchronousChannelProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   136
      sun/nio/ch/KQueue.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   137
      sun/nio/ch/KQueuePort.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   138
      sun/nio/fs/BsdFileStore.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   139
      sun/nio/fs/BsdFileSystem.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   140
      sun/nio/fs/BsdFileSystemProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   141
      sun/nio/fs/BsdNativeDispatcher.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   142
      sun/nio/fs/MacOSXFileSystemProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   143
      sun/nio/fs/MacOSXFileSystem.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   144
      sun/nio/fs/MacOSXNativeDispatcher.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   145
      sun/tools/attach/BsdAttachProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   146
      sun/tools/attach/BsdVirtualMachine.java
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   147
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   148
22593
938340719ac2 8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents: 17922
diff changeset
   149
ifneq ($(OPENJDK_TARGET_OS),aix)
938340719ac2 8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents: 17922
diff changeset
   150
    EXFILES+=sun/nio/ch/AixAsynchronousChannelProvider.java \
938340719ac2 8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents: 17922
diff changeset
   151
             sun/nio/ch/AixPollPort.java \
938340719ac2 8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents: 17922
diff changeset
   152
             sun/nio/fs/AixFileStore.java \
938340719ac2 8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents: 17922
diff changeset
   153
             sun/nio/fs/AixFileSystem.java \
938340719ac2 8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents: 17922
diff changeset
   154
             sun/nio/fs/AixFileSystemProvider.java \
938340719ac2 8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents: 17922
diff changeset
   155
             sun/nio/fs/AixNativeDispatcher.java
938340719ac2 8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents: 17922
diff changeset
   156
endif
938340719ac2 8024900: PPC64: Enable new build on AIX (jdk part)
simonis
parents: 17922
diff changeset
   157
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   158
# Exclude BreakIterator classes that are just used in compile process to generate
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   159
# data files and shouldn't go in the product
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   160
EXFILES += sun/text/resources/BreakIteratorRules.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   161
    sun/text/resources/BreakIteratorRules_th.java
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   162
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   163
# TODO: Add BUILD_HEADLESS_ONLY to configure?
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   164
ifdef BUILD_HEADLESS_ONLY
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   165
  EXCLUDES += sun/applet
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   166
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   167
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   168
ifdef OPENJDK
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   169
  EXCLUDES += sun/java2d/cmm/kcms
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   170
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   171
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   172
# Used on windows and macosx
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   173
ifeq (, $(filter $(OPENJDK_TARGET_OS), windows macosx))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   174
  EXFILES += sun/awt/AWTCharset.java
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   175
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   176
21130
0f0b9c8f701a 8025673: [macosx] Disable X11 AWT toolkit
dholmes
parents: 21128
diff changeset
   177
ifeq ($(OPENJDK_TARGET_OS), macosx)
0f0b9c8f701a 8025673: [macosx] Disable X11 AWT toolkit
dholmes
parents: 21128
diff changeset
   178
  # exclude all X11 on Mac, we can't exclude some like below or we'll have compilation errors
0f0b9c8f701a 8025673: [macosx] Disable X11 AWT toolkit
dholmes
parents: 21128
diff changeset
   179
  EXCLUDES += sun/awt/X11
0f0b9c8f701a 8025673: [macosx] Disable X11 AWT toolkit
dholmes
parents: 21128
diff changeset
   180
else
0f0b9c8f701a 8025673: [macosx] Disable X11 AWT toolkit
dholmes
parents: 21128
diff changeset
   181
  # TBD: figure out how to eliminate this long list
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   182
  EXFILES += sun/awt/X11/ScreenFormat.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   183
      sun/awt/X11/XArc.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   184
      sun/awt/X11/XChar2b.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   185
      sun/awt/X11/XCharStruct.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   186
      sun/awt/X11/XClassHint.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   187
      sun/awt/X11/XComposeStatus.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   188
      sun/awt/X11/XExtCodes.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   189
      sun/awt/X11/XFontProp.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   190
      sun/awt/X11/XFontSetExtents.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   191
      sun/awt/X11/XFontStruct.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   192
      sun/awt/X11/XGCValues.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   193
      sun/awt/X11/XHostAddress.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   194
      sun/awt/X11/XIMCallback.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   195
      sun/awt/X11/XIMHotKeyTrigger.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   196
      sun/awt/X11/XIMHotKeyTriggers.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   197
      sun/awt/X11/XIMPreeditCaretCallbackStruct.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   198
      sun/awt/X11/XIMPreeditDrawCallbackStruct.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   199
      sun/awt/X11/XIMPreeditStateNotifyCallbackStruct.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   200
      sun/awt/X11/XIMStatusDrawCallbackStruct.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   201
      sun/awt/X11/XIMStringConversionCallbackStruct.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   202
      sun/awt/X11/XIMStringConversionText.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   203
      sun/awt/X11/XIMStyles.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   204
      sun/awt/X11/XIMText.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   205
      sun/awt/X11/XIMValuesList.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   206
      sun/awt/X11/XImage.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   207
      sun/awt/X11/XKeyboardControl.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   208
      sun/awt/X11/XKeyboardState.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   209
      sun/awt/X11/XOMCharSetList.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   210
      sun/awt/X11/XOMFontInfo.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   211
      sun/awt/X11/XOMOrientation.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   212
      sun/awt/X11/XPoint.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   213
      sun/awt/X11/XRectangle.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   214
      sun/awt/X11/XSegment.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   215
      sun/awt/X11/XStandardColormap.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   216
      sun/awt/X11/XTextItem.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   217
      sun/awt/X11/XTextItem16.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   218
      sun/awt/X11/XTextProperty.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   219
      sun/awt/X11/XTimeCoord.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   220
      sun/awt/X11/XWindowChanges.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   221
      sun/awt/X11/XdbeSwapInfo.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   222
      sun/awt/X11/XmbTextItem.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   223
      sun/awt/X11/XwcTextItem.java
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   224
endif
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   225
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   226
# Exclude another implicitly not included file.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   227
EXFILES += sun/util/locale/AsciiUtil.java
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   228
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   229
ifeq (, $(filter $(OPENJDK_TARGET_OS), solaris macosx))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   230
  #
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   231
  # only solaris and macosx
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   232
  #
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   233
  EXFILES += sun/nio/fs/PollingWatchService.java
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   234
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   235
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   236
# TODO: Fix when converting NIO
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   237
# Exclude *-linux-arm.java and *-linux-ppc.java from closed.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   238
EXFILES += -linux-arm.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   239
    -linux-ppc.java
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   240
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   241
ifeq ($(OPENJDK_TARGET_OS), windows)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   242
  EXFILES += sun/nio/ch/AbstractPollSelectorImpl.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   243
      sun/nio/ch/PollSelectorProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   244
      sun/nio/ch/SimpleAsynchronousFileChannelImpl.java
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   245
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   246
15130
14a47a69bc62 8005694: build-infra: Cleanup of misc changes in build-infra
erikj
parents: 15128
diff changeset
   247
# These files do not appear in the build result of the old build. This
14a47a69bc62 8005694: build-infra: Cleanup of misc changes in build-infra
erikj
parents: 15128
diff changeset
   248
# is because they are generated sources, but the AUTO_JAVA_FILES won't
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   249
# pick them up since they aren't generated when the source dirs are
15130
14a47a69bc62 8005694: build-infra: Cleanup of misc changes in build-infra
erikj
parents: 15128
diff changeset
   250
# searched and they aren't referenced by any other classes so they won't
14a47a69bc62 8005694: build-infra: Cleanup of misc changes in build-infra
erikj
parents: 15128
diff changeset
   251
# be picked up by implicit compilation. On a rebuild, they are picked up
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   252
# and compiled. Exclude them here to produce the same rt.jar as the old
15130
14a47a69bc62 8005694: build-infra: Cleanup of misc changes in build-infra
erikj
parents: 15128
diff changeset
   253
# build does when building just once.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   254
EXFILES += javax/swing/plaf/nimbus/InternalFrameTitlePanePainter.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   255
    javax/swing/plaf/nimbus/OptionPaneMessageAreaPainter.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   256
    javax/swing/plaf/nimbus/ScrollBarPainter.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   257
    javax/swing/plaf/nimbus/SliderPainter.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   258
    javax/swing/plaf/nimbus/SpinnerPainter.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   259
    javax/swing/plaf/nimbus/SplitPanePainter.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   260
    javax/swing/plaf/nimbus/TabbedPanePainter.java
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   261
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   262
# Acquire a list of files that should be copied straight over to the classes.
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   263
include CopyIntoClasses.gmk
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   264
# Now we have COPY_PATTERNS, COPY_FILES and COPY_EXTRA
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   265
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   266
ifndef OPENJDK
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   267
  CLOSED_SRC_DIRS := $(JDK_TOPDIR)/src/closed/share/classes \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   268
      $(JDK_TOPDIR)/src/closed/$(OPENJDK_TARGET_OS_API_DIR)/classes
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   269
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   270
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   271
MACOSX_SRC_DIRS :=
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   272
ifeq ($(OPENJDK_TARGET_OS), macosx)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   273
  MACOSX_SRC_DIRS += $(JDK_TOPDIR)/src/macosx/classes
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   274
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   275
  # this files are duplicated in MACOSX_SRC_DIRS
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   276
  EXFILES += $(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/DefaultSelectorProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   277
      $(JDK_TOPDIR)/src/solaris/classes/sun/java2d/BackBufferCapsProvider.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   278
      $(JDK_TOPDIR)/src/solaris/classes/java/net/DefaultInterface.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   279
      $(JDK_TOPDIR)/src/solaris/classes/java/lang/ClassLoaderHelper.java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   280
      $(JDK_TOPDIR)/src/solaris/classes/sun/util/locale/provider/HostLocaleProviderAdapterImpl.java \
20884
lana
parents: 20785 20551
diff changeset
   281
      $(JDK_TOPDIR)/src/solaris/classes/sun/nio/fs/GnomeFileTypeDetector.java \
lana
parents: 20785 20551
diff changeset
   282
      $(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/SctpChannelImpl.java \
lana
parents: 20785 20551
diff changeset
   283
      $(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/SctpMultiChannelImpl.java \
lana
parents: 20785 20551
diff changeset
   284
      $(JDK_TOPDIR)/src/solaris/classes/sun/nio/ch/sctp/SctpServerChannelImpl.java
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   285
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   286
  # JObjC.jar contains 1.5 byte-code...so skip it here :-(
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   287
  # MACOSX_SRC_DIRS += $(JDK_TOPDIR)/src/macosx/native/jobjc/src
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   288
  # EXCLUDES += tests/java/com/apple/jobjc
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   289
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   290
  EXCLUDES += com/apple/jobjc
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   291
endif
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   292
21128
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   293
# The security classes should not end up in the classes directory as that will prevent them
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   294
# from working when running the exploded jdk image. Compile them separately to a different
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   295
# directory from where the jars can be created.
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   296
SECURITY_PKGS := \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   297
    com/oracle/security/ucrypto \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   298
    com/sun/crypto/provider \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   299
    javax/crypto \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   300
    sun/security/ec \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   301
    sun/security/internal \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   302
    sun/security/mscapi \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   303
    sun/security/pkcs11 \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   304
    #
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   305
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   306
# The exception handling of swing beaninfo
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   307
# These resources violates the convention of having code and resources together under
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   308
# $(JDK_TOPDIR)/src/.../classes directories
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   309
$(JDK_OUTPUTDIR)/classes/javax/swing/beaninfo/images/%.gif: $(JDK_TOPDIR)/make/tools/swing-beans/beaninfo/images/%.gif
16636
1cc691bcfe50 8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents: 15334
diff changeset
   310
	$(call install-file)
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   311
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13586
diff changeset
   312
# The JDK_USER_DEFINED_FILTER is a poor man's incremental build: by specifying
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13586
diff changeset
   313
# JDK_FILTER at the make command line, only a subset of the JDK java files will
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13586
diff changeset
   314
# be recompiled. If multiple paths are separated by comma, convert that into a
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13586
diff changeset
   315
# space separated list.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   316
JDK_USER_DEFINED_FILTER := $(strip $(subst $(COMMA),$(SPACE), $(JDK_FILTER)))
13702
efd6a05935b2 7197849: Update new build-infra makefiles
ohair
parents: 13586
diff changeset
   317
21128
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   318
ifeq ($(ENABLE_SJAVAC),yes)
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   319
  # With sjavac enabled, excluded sources are not even considered for linking. 
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   320
  # Explicitly add the security sources to sourcepath for linking.
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   321
  BUILD_JDK_SOURCEPATH:=$(patsubst %,-i$(SPACE)%.*,$(subst /,.,$(SECURITY_PKGS))) \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   322
      -sourcepath $(JDK_TOPDIR)/src/share/classes
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   323
endif
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   324
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   325
$(eval $(call SetupJavaCompilation,BUILD_JDK,\
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   326
    SETUP:=GENERATE_JDKBYTECODE,\
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   327
    SRC:=$(JDK_TOPDIR)/src/share/classes \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   328
        $(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/classes \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   329
        $(MACOSX_SRC_DIRS) \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   330
        $(JDK_OUTPUTDIR)/gensrc \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   331
        $(JDK_OUTPUTDIR)/gensrc_no_srczip \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   332
        $(CLOSED_SRC_DIRS),\
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   333
    INCLUDES:=$(JDK_USER_DEFINED_FILTER),\
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   334
    EXCLUDES:=$(EXCLUDES) $(SECURITY_PKGS),\
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   335
    EXCLUDE_FILES:=$(EXFILES),\
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   336
    BIN:=$(JDK_OUTPUTDIR)/classes,\
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   337
    COPY:=$(COPY_PATTERNS),\
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   338
    COPY_FILES:=$(COPY_FILES),\
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   339
    HEADERS:=$(JDK_OUTPUTDIR)/gensrc_headers,\
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   340
    ADD_JAVAC_FLAGS:=$(BUILD_JDK_SOURCEPATH)))
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   341
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   342
##########################################################################################
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   343
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   344
$(eval $(call SetupJavaCompilation,BUILD_SECURITY, \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   345
    SETUP := GENERATE_JDKBYTECODE, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   346
    SRC := $(JDK_TOPDIR)/src/share/classes \
21128
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   347
        $(JDK_TOPDIR)/src/$(OPENJDK_TARGET_OS_API_DIR)/classes \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   348
        $(MACOSX_SRC_DIRS) \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   349
        $(CLOSED_SRC_DIRS), \
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   350
    INCLUDES := $(SECURITY_PKGS), \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   351
    EXCLUDES := $(EXCLUDES), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   352
    EXCLUDE_FILES := $(EXFILES), \
21128
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   353
    BIN := $(JDK_OUTPUTDIR)/classes_security, \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   354
    HEADERS := $(JDK_OUTPUTDIR)/gensrc_headers))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   355
21128
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   356
$(BUILD_SECURITY): $(BUILD_JDK)
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   357
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   358
##########################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   359
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   360
$(JDK_OUTPUTDIR)/classes/META-INF/services/com.sun.tools.xjc.Plugin:
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   361
	$(MKDIR) -p $(@D)
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   362
	$(TOUCH) $@
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   363
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   364
##########################################################################################
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   365
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   366
ifeq ($(OPENJDK_TARGET_OS), macosx)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   367
  #
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   368
  # JObjC.jar is compiled with BOOT_JAVAC which (may) not support the "-h" flag.
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   369
  # so we first compile classes with BOOT_JAVAC and then with JDK_JAVAC :-(
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   370
  #
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   371
  $(eval $(call SetupJavaCompiler,GENERATE_15BYTECODE, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   372
      JAVAC := $(JAVAC), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   373
      FLAGS := -source 1.5 -target 1.5 -g -bootclasspath $(BOOT_RTJAR) -cp $(JDK_OUTPUTDIR)/../langtools/dist/lib/classes.jar $(DISABLE_WARNINGS), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   374
      SERVER_DIR := $(SJAVAC_SERVER_DIR), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   375
      SERVER_JVM := $(SJAVAC_SERVER_JAVA)))
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   376
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   377
  $(eval $(call SetupJavaCompilation,BUILD_JOBJC, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   378
      SETUP := GENERATE_15BYTECODE, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   379
      DISABLE_SJAVAC := true, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   380
      SRC := $(JDK_TOPDIR)/src/macosx/native/jobjc/src/core/java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   381
          $(JDK_TOPDIR)/src/macosx/native/jobjc/src/runtime-additions/java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   382
          $(JDK_OUTPUTDIR)/gensrc_jobjc/src, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   383
      INCLUDES := com/apple/jobjc, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   384
      EXCLUDES := tests/java/com/apple/jobjc, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   385
      BIN := $(JDK_OUTPUTDIR)/jobjc_classes, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   386
      JAR := $(JDK_OUTPUTDIR)/lib/JObjC.jar, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   387
      JARINDEX := true))
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   388
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   389
  $(BUILD_JOBJC): $(BUILD_JDK)
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   390
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   391
  $(eval $(call SetupJavaCompilation,BUILD_JOBJC_HEADERS, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   392
      SETUP := GENERATE_JDKBYTECODE, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   393
      SRC := $(JDK_TOPDIR)/src/macosx/native/jobjc/src/core/java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   394
          $(JDK_TOPDIR)/src/macosx/native/jobjc/src/runtime-additions/java \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   395
          $(JDK_OUTPUTDIR)/gensrc_jobjc/src, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   396
      INCLUDES := com/apple/jobjc, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   397
      EXCLUDES := tests/java/com/apple/jobjc, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   398
      BIN := $(JDK_OUTPUTDIR)/jobjc_classes_headers, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   399
      HEADERS := $(JDK_OUTPUTDIR)/gensrc_headers_jobjc))
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   400
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   401
$(BUILD_JOBJC_HEADERS): $(BUILD_JDK)
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   402
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   403
endif
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   404
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   405
##########################################################################################
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12893
diff changeset
   406
15324
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   407
ifndef OPENJDK
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   408
  ifeq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   409
    ifeq ($(OPENJDK_TARGET_CPU_BITS), 32)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   410
      $(eval $(call SetupJavaCompilation,BUILD_ACCESSBRIDGE_32, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   411
          SETUP := GENERATE_JDKBYTECODE, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   412
          JAVAC_FLAGS := -cp $(JDK_OUTPUTDIR)/classes, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   413
          SRC := $(JDK_OUTPUTDIR)/gensrc_ab/32bit, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   414
          BIN := $(JDK_OUTPUTDIR)/classes_ab/32bit))
15324
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   415
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   416
      $(BUILD_ACCESSBRIDGE_32): $(BUILD_JDK)
15324
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   417
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   418
      $(eval $(call SetupJavaCompilation,BUILD_ACCESSBRIDGE_LEGACY, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   419
          SETUP := GENERATE_JDKBYTECODE, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   420
          JAVAC_FLAGS := -cp $(JDK_OUTPUTDIR)/classes, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   421
          SRC := $(JDK_OUTPUTDIR)/gensrc_ab/legacy, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   422
          BIN := $(JDK_OUTPUTDIR)/classes_ab/legacy))
15324
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   423
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   424
      $(BUILD_ACCESSBRIDGE_LEGACY): $(BUILD_JDK)
15324
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   425
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   426
    else
15324
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   427
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   428
      $(eval $(call SetupJavaCompilation,BUILD_ACCESSBRIDGE_64, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   429
          SETUP := GENERATE_JDKBYTECODE, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   430
          JAVAC_FLAGS := -cp $(JDK_OUTPUTDIR)/classes, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   431
          SRC := $(JDK_OUTPUTDIR)/gensrc_ab/64bit, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   432
          BIN := $(JDK_OUTPUTDIR)/classes_ab/64bit))
15324
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   433
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   434
      $(BUILD_ACCESSBRIDGE_64): $(BUILD_JDK)
15324
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   435
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   436
    endif
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   437
  endif
15324
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   438
endif
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   439
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   440
##########################################################################################
74584166bb07 8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents: 14708
diff changeset
   441
21128
2a7460bba7a5 8009280: JCE jurisdiction policy files not copied into jdk/lib/security
erikj
parents: 20884
diff changeset
   442
all: $(BUILD_JDK) $(BUILD_SECURITY) $(BUILD_JOBJC) $(BUILD_JOBJC_HEADERS) $(COPY_EXTRA) \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   443
    $(JDK_OUTPUTDIR)/classes/META-INF/services/com.sun.tools.xjc.Plugin \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   444
    $(BUILD_ACCESSBRIDGE_32) $(BUILD_ACCESSBRIDGE_64) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20102
diff changeset
   445
    $(BUILD_ACCESSBRIDGE_LEGACY)
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   446
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   447
.PHONY: all