2
# Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5
# This code is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License version 2 only, as
7
# published by the Free Software Foundation.
9
# This code is distributed in the hope that it will be useful, but WITHOUT
10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
# version 2 for more details (a copy is included in the LICENSE file that
13
# accompanied this code).
15
# You should have received a copy of the GNU General Public License version
16
# 2 along with this work; if not, write to the Free Software Foundation,
17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
# or visit www.oracle.com if you need additional information or have any
29
include UtilsForTests.gmk
31
THIS_FILE := $(TOPDIR)/test/make/TestCopyFiles.gmk
33
$(TOPDIR)/make/common/MakeBase.gmk \
36
OUTPUT_DIR := $(TESTMAKE_OUTPUTDIR)/copy-files
37
$(call MakeDir, $(OUTPUT_DIR))
39
################################################################################
40
# Test SetupCopyFiles with CacheFind and files with spaces in their names.
42
SRC_DIR := $(OUTPUT_DIR)/src
43
DEST_DIR := $(OUTPUT_DIR)/dest
45
$(OUTPUT_DIR)/_src_created: $(DEPS)
48
$(MKDIR) -p $(SRC_DIR)
49
$(MKDIR) -p $(SRC_DIR)/foo
50
$(TOUCH) $(SRC_DIR)/file
51
$(TOUCH) $(SRC_DIR)/foo/foofile
52
$(TOUCH) "$(SRC_DIR)/foo/foo file"
53
# Spaces in directories only works with gnu make 4.0 or later
54
ifeq (4.0, $(firstword $(sort 4.0 $(MAKE_VERSION))))
55
$(MKDIR) -p "$(SRC_DIR)/foo bar"
56
$(TOUCH) "$(SRC_DIR)/foo bar/foobarfile"
57
$(TOUCH) "$(SRC_DIR)/foo bar/foo bar file"
59
$(LN) -s file "$(SRC_DIR)/link to file"
62
$(eval $(call SetupCopyFiles, COPY_1, \
64
DEST := $(DEST_DIR), \
65
FILES := $(call ShellFindFiles, $(SRC_DIR)), \
68
# Optionally define a rule that deletes all the target files after the makefile
69
# has been parsed. GNU make has specific problems with this in combination with
70
# spaces in directory names.
71
ifeq ($(DELETE_FIRST), true)
74
$(ECHO) '$(DEST_DIR)/foo' '$(wildcard $(DEST_DIR)/foo)'
76
$(COPY_1): delete-targets
81
run-test1: $(OUTPUT_DIR)/_src_created
82
$(ECHO) "Copy 1 first time"
83
+$(MAKE) -f $(THIS_FILE) do-copy1
84
$(DIFF) -r $(SRC_DIR) $(DEST_DIR)
85
# Rerun the copy a second time, with the targets present at make parse
86
# time, but then deleted by a prerequisite rule.
87
$(ECHO) "Copy 1 second time"
88
+$(MAKE) -f $(THIS_FILE) do-copy1 DELETE_FIRST=true
89
$(DIFF) -r $(SRC_DIR) $(DEST_DIR)
91
TEST_TARGETS += run-test1
93
.PHONY: do-copy1 run-test1 delete-targets
95
################################################################################