Alexander Pyhalov
2016-09-21 237543c1cd4e502ce2fed48f9010faace85a3e88
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
#
 
# All Perl versions are 32-bit only.
 
COMMON_PERL_ENV +=    MAKE=$(GMAKE)
COMMON_PERL_ENV +=    PATH=$(dir $(CC)):$(SPRO_VROOT)/bin:$(PATH)
COMMON_PERL_ENV +=    LANG=""
COMMON_PERL_ENV +=    CC="$(CC)"
COMMON_PERL_ENV +=    CFLAGS="$(PERL_OPTIMIZE)"
 
# Yes.  Perl is just scripts, for now, but we need architecture
# directories so that it populates all architecture prototype
# directories.
 
$(BUILD_DIR)/$(MACH32)-5.16/.configured:    PERL_VERSION=5.16
$(BUILD_DIR)/$(MACH32)-5.16/.configured:    BITS=32
$(BUILD_DIR)/$(MACH64)-5.16/.configured:    PERL_VERSION=5.16
$(BUILD_DIR)/$(MACH64)-5.16/.configured:    BITS=64
$(BUILD_DIR)/$(MACH32)-5.22/.configured:    PERL_VERSION=5.22
$(BUILD_DIR)/$(MACH32)-5.22/.configured:    BITS=32
$(BUILD_DIR)/$(MACH64)-5.22/.configured:    PERL_VERSION=5.22
$(BUILD_DIR)/$(MACH64)-5.22/.configured:    BITS=64
 
$(BUILD_DIR)/$(MACH32)-5.16/.tested:    PERL_VERSION=5.16
$(BUILD_DIR)/$(MACH32)-5.16/.tested:    BITS=32
$(BUILD_DIR)/$(MACH32)-5.22/.tested:    PERL_VERSION=5.22
$(BUILD_DIR)/$(MACH32)-5.22/.tested:    BITS=32
 
$(BUILD_DIR)/$(MACH32)-5.16/.tested-and-compared:    PERL_VERSION=5.16
$(BUILD_DIR)/$(MACH32)-5.16/.tested-and-compared:    BITS=32
$(BUILD_DIR)/$(MACH32)-5.22/.tested-and-compared:    BITS=32
$(BUILD_DIR)/$(MACH32)-5.22/.tested-and-compared:    PERL_VERSION=5.22
 
PERL_32_BUILD_FILES:=$(foreach ver, $(PERL_VERSIONS), $(BUILD_DIR)/$(MACH32)-$(ver)/.built )
PERL_32_INSTALL_FILES:=$(foreach ver, $(PERL_VERSIONS), $(BUILD_DIR)/$(MACH32)-$(ver)/.installed )
PERL_32_TEST_FILES:=$(foreach ver, $(PERL_VERSIONS), $(BUILD_DIR)/$(MACH32)-$(ver)/.tested )
PERL_32_TEST_AND_COMPARE_FILES:=$(foreach ver, $(PERL_VERSIONS), $(BUILD_DIR)/$(MACH32)-$(ver)/.tested-and-compared )
 
BUILD_32 =    $(PERL_32_BUILD_FILES)
BUILD_64 =    $(BUILD_DIR)/$(MACH64)-5.16/.built
 
INSTALL_32 =    $(PERL_32_INSTALL_FILES)
INSTALL_64 =    $(BUILD_DIR)/$(MACH64)-5.16/.installed
 
COMPONENT_CONFIGURE_ENV +=    $(COMMON_PERL_ENV)
COMPONENT_CONFIGURE_ENV +=    PERL="$(PERL)"
$(BUILD_DIR)/%/.configured:    $(SOURCE_DIR)/.prep
    ($(RM) -r $(@D) ; $(MKDIR) $(@D))
    $(CLONEY) $(SOURCE_DIR) $(@D)
    $(COMPONENT_PRE_CONFIGURE_ACTION)
    (cd $(@D) ; $(COMPONENT_CONFIGURE_ENV) $(PERL) $(PERL_FLAGS) \
                Makefile.PL $(PERL_STUDIO_OVERWRITE) $(CONFIGURE_OPTIONS))
    $(COMPONENT_POST_CONFIGURE_ACTION)
    $(TOUCH) $@
 
 
COMPONENT_BUILD_ENV +=    $(COMMON_PERL_ENV)
$(BUILD_DIR)/%/.built:    $(BUILD_DIR)/%/.configured
    $(COMPONENT_PRE_BUILD_ACTION)
    (cd $(@D) ; $(ENV) $(COMPONENT_BUILD_ENV) \
        $(GMAKE) $(COMPONENT_BUILD_GMAKE_ARGS) $(COMPONENT_BUILD_ARGS) \
        $(COMPONENT_BUILD_TARGETS))
    $(COMPONENT_POST_BUILD_ACTION)
    $(TOUCH) $@
 
 
COMPONENT_INSTALL_ARGS +=    DESTDIR="$(PROTO_DIR)"
COMPONENT_INSTALL_TARGETS =    install_vendor
COMPONENT_INSTALL_ENV +=    $(COMMON_PERL_ENV)
$(BUILD_DIR)/%/.installed:    $(BUILD_DIR)/%/.built
    $(COMPONENT_PRE_INSTALL_ACTION)
    (cd $(@D) ; $(ENV) $(COMPONENT_INSTALL_ENV) $(GMAKE) \
            $(COMPONENT_INSTALL_ARGS) $(COMPONENT_INSTALL_TARGETS))
    $(COMPONENT_POST_INSTALL_ACTION)
    $(TOUCH) $@
 
# Define bit specific and Perl version specific filenames.
COMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-$(PERL_VERSION)-$(BITS).master
COMPONENT_TEST_OUTPUT = $(COMPONENT_TEST_BUILD_DIR)/test-$(PERL_VERSION)-$(BITS)-results
COMPONENT_TEST_DIFFS =  $(COMPONENT_TEST_BUILD_DIR)/test-$(PERL_VERSION)-$(BITS)-diffs
COMPONENT_TEST_SNAPSHOT = $(COMPONENT_TEST_BUILD_DIR)/results-$(PERL_VERSION)-$(BITS).snapshot
COMPONENT_TEST_TRANSFORM_CMD = $(COMPONENT_TEST_BUILD_DIR)/transform-$(PERL_VERSION)-$(BITS)-results
 
COMPONENT_TEST_TARGETS =    check
COMPONENT_TEST_ENV +=    $(COMMON_PERL_ENV)
 
# determine the type of tests we want to run.
ifeq ($(strip $(wildcard $(COMPONENT_TEST_RESULTS_DIR)/results-*.master)),)
TEST_32 =    $(PERL_32_TEST_FILES)
else
TEST_32 =       $(PERL_32_TEST_AND_COMPARE_FILES)
endif
 
# test the built source
$(BUILD_DIR)/%/.tested-and-compared:    $(BUILD_DIR)/%/.built
    $(RM) -rf $(COMPONENT_TEST_BUILD_DIR)
    $(MKDIR) $(COMPONENT_TEST_BUILD_DIR)
    $(COMPONENT_PRE_TEST_ACTION)
    -(cd $(COMPONENT_TEST_DIR) ; \
        $(COMPONENT_TEST_ENV_CMD) $(COMPONENT_TEST_ENV) \
        $(COMPONENT_TEST_CMD) \
        $(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS)) \
        &> $(COMPONENT_TEST_OUTPUT)
    $(COMPONENT_POST_TEST_ACTION)
    $(COMPONENT_TEST_CREATE_TRANSFORMS)
    $(COMPONENT_TEST_PERFORM_TRANSFORM)
    $(COMPONENT_TEST_COMPARE)
    $(COMPONENT_TEST_CLEANUP)
    $(TOUCH) $@
 
$(BUILD_DIR)/%/.tested:    $(BUILD_DIR)/%/.built
    $(COMPONENT_PRE_TEST_ACTION)
    (cd $(COMPONENT_TEST_DIR) ; \
        $(COMPONENT_TEST_ENV_CMD) $(COMPONENT_TEST_ENV) \
        $(COMPONENT_TEST_CMD) \
        $(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS))
    $(COMPONENT_POST_TEST_ACTION)
    $(COMPONENT_TEST_CLEANUP)
    $(TOUCH) $@
 
ifeq   ($(strip $(PARFAIT_BUILD)),yes)
parfait: build
else
parfait:
    $(MAKE) PARFAIT_BUILD=yes parfait
endif
 
clean:: 
    $(RM) -r $(BUILD_DIR) $(PROTO_DIR)