jdk/make/CopySamples.gmk
author ihse
Wed, 20 Jan 2016 09:54:13 +0100
changeset 35276 50b3cdcef339
parent 35241 075bbb8f2423
permissions -rw-r--r--
8145596: Enable debug symbols for all libraries Reviewed-by: erikj
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
     1
#
27565
729f9700483a 8049367: Modular Run-Time Images
chegar
parents: 25859
diff changeset
     2
# Copyright (c) 2011, 2014, 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
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
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    31
################################################################################
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    32
31445
0ed42e9e7694 8081814: Modularize the deploy build
erikj
parents: 27565
diff changeset
    33
SAMPLE_TARGET_DIR := $(SUPPORT_OUTPUTDIR)/sample/image
25859
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 23010
diff changeset
    34
SAMPLE_SOURCE_DIR := $(JDK_TOPDIR)/src/sample/share
3317bb8137f4 8054834: Modular Source Code
chegar
parents: 23010
diff changeset
    35
SAMPLE_SOLARIS_SOURCE_DIR := $(JDK_TOPDIR)/src/sample/solaris
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    36
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    37
# Exclude the vm directory
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    38
$(eval $(call SetupCopyFiles, COPY_SHARE_SAMPLES, \
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    39
    SRC := $(SAMPLE_SOURCE_DIR), \
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    40
    DEST := $(SAMPLE_TARGET_DIR), \
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    41
    FILES := $(filter-out $(SAMPLE_SOURCE_DIR)/vm/%, \
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    42
        $(call CacheFind, $(SAMPLE_SOURCE_DIR))), \
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    43
))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    44
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    45
TARGETS += $(COPY_SHARE_SAMPLES)
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    46
13164
72c5d01a857d 7181504: Update of latest build-infra Makefiles
erikj
parents: 12892
diff changeset
    47
ifneq (, $(filter $(OPENJDK_TARGET_OS), solaris macosx))
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    48
  $(eval $(call SetupCopyFiles, COPY_SOLARIS_SAMPLES, \
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    49
      SRC := $(SAMPLE_SOLARIS_SOURCE_DIR), \
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    50
      DEST := $(SAMPLE_TARGET_DIR), \
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    51
      FILES := $(call CacheFind, $(SAMPLE_SOLARIS_SOURCE_DIR)), \
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    52
  ))
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    53
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    54
  TARGETS += $(COPY_SOLARIS_SAMPLES)
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    55
endif
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    56
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    57
################################################################################
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    58
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    59
$(eval $(call IncludeCustomExtension, jdk, CopySamples.gmk))
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    60
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    61
################################################################################
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    62
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    63
all: $(TARGETS)
12317
9670c1610c53 7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff changeset
    64
35241
075bbb8f2423 8146403: Windows build can be faster
erikj
parents: 31445
diff changeset
    65
.PHONY: all default