jdk/make/gensrc/Gensrc-jdk.dev.gmk
author kbarrett
Thu, 15 Oct 2015 10:10:13 -0400
changeset 33224 bc5da96c1f0e
parent 29375 a20cc834d64f
child 33669 1082bb5cff16
permissions -rw-r--r--
8139200: Eliminate G1ParClosureSuper::_worker_id Summary: Moved _worker_id from G1ParClosureSuper to G1ParCopyHelper. Reviewed-by: mgerdin, tschatzl
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27088
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
     1
#
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
     2
# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
     4
#
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    10
#
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    15
# accompanied this code).
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    16
#
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    20
#
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    23
# questions.
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    24
#
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    25
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    26
include GensrcCommon.gmk
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    27
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    28
################################################################################
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    29
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    30
include GensrcProperties.gmk
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    31
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    32
$(eval $(call SetupCompileProperties,COMPILE_PROPERTIES, \
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    33
    $(filter %.properties, \
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 27088
diff changeset
    34
        $(call CacheFind, \
29375
a20cc834d64f 8074690: Fix for JDK-8074429 was not complete
ihse
parents: 27565
diff changeset
    35
            $(JDK_TOPDIR)/src/jdk.dev/share/classes/jdk/tools/jimage/resources)), \
27088
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    36
    ListResourceBundle))
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    37
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    38
TARGETS += $(COMPILE_PROPERTIES)
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    39
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    40
################################################################################
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    41
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    42
all: $(TARGETS)
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    43
ea6446a9121b 8055191: Split GensrcProperties.gmk into separate modules
erikj
parents:
diff changeset
    44
.PHONY: all