jdk/make/Tools.gmk
author erikj
Wed, 05 Feb 2014 14:21:10 +0100
changeset 22650 4d27550a5a27
parent 22639 37f4508257fe
child 22967 bfcfd51c9e5c
permissions -rw-r--r--
8033680: Profiles build broken Reviewed-by: alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
18241
3e009b5be123 8003559: Update display of applet windows
leonidr
parents: 15658
diff changeset
     2
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
12317
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
15126
bceb690ccf35 8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents: 14231
diff changeset
    26
# Cache all finds needed for this file. Only used on windows.
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
    27
$(eval $(call FillCacheFind, $(JDK_TOPDIR)/make/src/classes))
15126
bceb690ccf35 8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents: 14231
diff changeset
    28
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
    29
TOOLS_SRC := $(JDK_TOPDIR)/make/src/classes
15129
38c7422a92ff 8005635: build-infra: Support building install in jprt
erikj
parents: 15126
diff changeset
    30
21130
0f0b9c8f701a 8025673: [macosx] Disable X11 AWT toolkit
dholmes
parents: 20889
diff changeset
    31
ifeq ($(findstring $(OPENJDK_TARGET_OS),windows macosx),)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    32
  TOOLS_SRC += $(JDK_TOPDIR)/src/solaris/classes/sun/awt/X11/generator
15129
38c7422a92ff 8005635: build-infra: Support building install in jprt
erikj
parents: 15126
diff changeset
    33
endif
38c7422a92ff 8005635: build-infra: Support building install in jprt
erikj
parents: 15126
diff changeset
    34
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
    35
# The exception handling of swing beaninfo which have the own tool directory
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    36
ifeq (, $(BUILD_TOOLS))
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    37
  $(eval $(call SetupJavaCompilation,BUILD_TOOLS, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    38
      SETUP := GENERATE_OLDBYTECODE, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    39
      SRC := $(TOOLS_SRC), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    40
      BIN := $(JDK_OUTPUTDIR)/btclasses))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    41
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    42
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    43
$(JDK_OUTPUTDIR)/btclasses/build/tools/generatenimbus/resources/%.template: \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    44
    $(JDK_TOPDIR)/src/share/classes/javax/swing/plaf/nimbus/%.template
16636
1cc691bcfe50 8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents: 15693
diff changeset
    45
	$(call install-file)
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    46
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    47
BUILD_TOOLS += $(foreach i, $(wildcard $(JDK_TOPDIR)/src/share/classes/javax/swing/plaf/nimbus/*.template), $(JDK_OUTPUTDIR)/btclasses/build/tools/generatenimbus/resources/$(notdir $i))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    48
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
    49
# Resource used by CheckDeps tool
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
    50
$(JDK_OUTPUTDIR)/btclasses/build/tools/deps/refs.allowed: \
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
    51
    $(JDK_TOPDIR)/make/data/checkdeps/refs.allowed
16636
1cc691bcfe50 8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents: 15693
diff changeset
    52
	$(call install-file)
15693
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15689
diff changeset
    53
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15689
diff changeset
    54
BUILD_TOOLS += $(JDK_OUTPUTDIR)/btclasses/build/tools/deps/refs.allowed
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15689
diff changeset
    55
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    56
# Add a checksum ("jsum") to the end of a text file. Prevents trivial tampering with class lists.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    57
TOOL_ADDJSUM = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    58
    build.tools.addjsum.AddJsum
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    59
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    60
# The buildmetaindex tool creates a meta-index to make core class loaders lazier.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    61
TOOL_BUILDMETAINDEX = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    62
    build.tools.buildmetaindex.BuildMetaIndex
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    63
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    64
TOOL_COMPILEFONTCONFIG = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    65
    build.tools.compilefontconfig.CompileFontConfig
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    66
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    67
TOOL_COMPILEPROPERTIES = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    68
    build.tools.compileproperties.CompileProperties
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    69
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    70
TOOL_STRIPPROPERTIES = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    71
    build.tools.stripproperties.StripProperties
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    72
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    73
TOOL_JARREORDER = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    74
    build.tools.jarreorder.JarReorder
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    75
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    76
TOOL_GENERATECHARACTER = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    77
    build.tools.generatecharacter.GenerateCharacter
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    78
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    79
TOOL_CHARACTERNAME = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    80
    build.tools.generatecharacter.CharacterName
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    81
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
    82
TOOL_DTDBUILDER = $(JAVA) -Ddtd_home=$(JDK_TOPDIR)/make/data/dtdbuilder \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    83
    -cp $(JDK_OUTPUTDIR)/btclasses build.tools.dtdbuilder.DTDBuilder
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    84
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    85
TOOL_GENERATEBREAKITERATORDATA = $(JAVA) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    86
    -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    87
    build.tools.generatebreakiteratordata.GenerateBreakIteratorData
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    88
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    89
TOOL_GENERATECURRENCYDATA = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    90
    build.tools.generatecurrencydata.GenerateCurrencyData
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    91
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    92
TOOL_HASHER = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    93
    build.tools.hasher.Hasher
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    94
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    95
TOOL_TZDB = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    96
    build.tools.tzdb.TzdbZoneRulesCompiler
15289
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents: 15129
diff changeset
    97
3ac550392e43 8003680: JSR 310 Date/Time API
sherman
parents: 15129
diff changeset
    98
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
    99
# TODO: There are references to the jdwpgen.jar in jdk/make/netbeans/jdwpgen/build.xml
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   100
# and nbproject/project.properties in the same dir. Needs to be looked at.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   101
TOOL_JDWPGEN = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses build.tools.jdwpgen.Main
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   102
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   103
# TODO: Lots of files in jdk/make/tools/CharsetMapping dir
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   104
TOOL_CHARSETMAPPING = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
22639
37f4508257fe 8033236: Update GensrcCharsetMapping.gmk to build-infra standards
ihse
parents: 22046
diff changeset
   105
    build.tools.charsetmapping.Main $(LOG_INFO)
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   106
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   107
TOOL_SPP = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses build.tools.spp.Spp
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   108
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
   109
# Nimbus is used somewhere in the swing build.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   110
TOOL_GENERATENIMBUS = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   111
    build.tools.generatenimbus.Generator
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   112
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   113
TOOL_WRAPPERGENERATOR = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   114
    WrapperGenerator
12892
3ef14bab6254 7170079: Adjustments to build-infra makefiles
erikj
parents: 12317
diff changeset
   115
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   116
TOOL_AWT_TOBIN = $(JAVA) -Djava.awt.headless=true -cp $(JDK_OUTPUTDIR)/btclasses \
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
   117
    build.tools.icondata.awt.ToBin
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   118
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   119
TOOL_OSX_TOBIN = $(JAVA) -Djava.awt.headless=true -cp $(JDK_OUTPUTDIR)/btclasses \
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
   120
    build.tools.icondata.osxapp.ToBin
14231
a0c23c1c010f 8000992: Update new build-infra makefiles
ohair
parents: 13702
diff changeset
   121
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   122
TOOL_CLDRCONVERTER = $(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   123
    build.tools.cldrconverter.CLDRConverter
13583
dc0017b1a452 6336885: RFE: Locale Data Deployment Enhancements
naoto
parents: 13164
diff changeset
   124
22650
4d27550a5a27 8033680: Profiles build broken
erikj
parents: 22639
diff changeset
   125
TOOL_CHECKDEPS = $(JAVA) -Xbootclasspath/p:$(INTERIM_LANGTOOLS_JAR) \
15693
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15689
diff changeset
   126
    -cp $(JDK_OUTPUTDIR)/btclasses:$(JDK_OUTPUTDIR) \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   127
    build.tools.deps.CheckDeps
15693
ba31a578f948 8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents: 15689
diff changeset
   128
20774
330ea6efa3fd 8007292: Add JavaFX internal packages to package.access
mullan
parents: 18242
diff changeset
   129
TOOL_ADDTORESTRICTEDPKGS=$(JAVA) -cp $(JDK_OUTPUTDIR)/btclasses \
22650
4d27550a5a27 8033680: Profiles build broken
erikj
parents: 22639
diff changeset
   130
    build.tools.addtorestrictedpkgs.AddToRestrictedPkgs
20774
330ea6efa3fd 8007292: Add JavaFX internal packages to package.access
mullan
parents: 18242
diff changeset
   131
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   132
##########################################################################################
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   133
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   134
# Tools needed on solaris because OBJCOPY is broken.
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   135
20887
e6ca3d58bfe9 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 20323
diff changeset
   136
ifeq ($(OPENJDK_TARGET_OS), solaris)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   137
$(eval $(call SetupNativeCompilation,ADD_GNU_DEBUGLINK, \
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
   138
    SRC := $(JDK_TOPDIR)/make/src/native/add_gnu_debuglink, \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   139
    LANG := C, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   140
    CC := $(BUILD_CC), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   141
    LDEXE := $(BUILD_LD), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   142
    LDFLAGS := -lelf, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   143
    OBJECT_DIR := $(JDK_OUTPUTDIR)/objs/add_gnu_debuglink, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   144
    OUTPUT_DIR := $(JDK_OUTPUTDIR)/btbin, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   145
    PROGRAM := add_gnu_debuglink))
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
   146
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   147
$(eval $(call SetupNativeCompilation,FIX_EMPTY_SEC_HDR_FLAGS, \
21805
c7d7946239de 8027566: Remove the old build system
ihse
parents: 21130
diff changeset
   148
    SRC := $(JDK_TOPDIR)/make/src/native/fix_empty_sec_hdr_flags, \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   149
    LANG := C, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   150
    CC := $(BUILD_CC), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   151
    LDEXE := $(BUILD_LD), \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   152
    LDFLAGS := -lelf, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   153
    OBJECT_DIR := $(JDK_OUTPUTDIR)/objs/fix_empty_sec_hdr_flags, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   154
    OUTPUT_DIR := $(JDK_OUTPUTDIR)/btbin, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 20323
diff changeset
   155
    PROGRAM := fix_empty_sec_hdr_flags))
20887
e6ca3d58bfe9 7165611: implement Full Debug Symbols on MacOS X hotspot
dcubed
parents: 20323
diff changeset
   156
endif