equal
deleted
inserted
replaced
16 # fields enclosed by brackets "[]" replaced with your own identifying |
16 # fields enclosed by brackets "[]" replaced with your own identifying |
17 # information: Portions Copyright [yyyy] [name of copyright owner] |
17 # information: Portions Copyright [yyyy] [name of copyright owner] |
18 # |
18 # |
19 # CDDL HEADER END |
19 # CDDL HEADER END |
20 # |
20 # |
21 # Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. |
21 # Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved. |
22 # |
22 # |
23 |
23 |
24 # Perl 5.12 and older are 32-bit only. |
24 # Perl 5.12 and older are 32-bit only. |
25 # Perl 5.16 and newer are 64-bit only. |
25 # Perl 5.16 and newer are 64-bit only. |
26 |
26 |
151 $(MAKE) PARFAIT_BUILD=yes parfait |
151 $(MAKE) PARFAIT_BUILD=yes parfait |
152 endif |
152 endif |
153 |
153 |
154 clean:: |
154 clean:: |
155 $(RM) -r $(BUILD_DIR) $(PROTO_DIR) |
155 $(RM) -r $(BUILD_DIR) $(PROTO_DIR) |
|
156 |
|
157 ifneq ($(findstring 5.12, $(PERL_VERSIONS)),) |
|
158 REQUIRED_PACKAGES += runtime/perl-512 |
|
159 endif |
|
160 ifneq ($(findstring 5.12-mt, $(PERL_VERSIONS)),) |
|
161 REQUIRED_PACKAGES += runtime/perl-threaded-512 |
|
162 endif |
|
163 ifneq ($(findstring 5.16, $(PERL_VERSIONS)),) |
|
164 REQUIRED_PACKAGES += runtime/perl-516 |
|
165 endif |