make-rules/makemaker.mk
changeset 260 cc1837bbe69e
child 774 d0cbca26a17c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/make-rules/makemaker.mk	Tue May 24 16:16:36 2011 -0700
@@ -0,0 +1,88 @@
+#
+# 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, Oracle and/or its affiliates. All rights reserved.
+#
+
+# we only do 32 bit perl for now.
+BITS=32
+
+COMMON_PERL_ENV +=	MAKE=$(GMAKE)
+COMMON_PERL_ENV +=	PATH=$(dir $(CC)):$(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.
+PERLBD_ARCH = $(BUILD_DIR)/$(MACH32)
+
+$(PERLBD_ARCH)-5.8.4/.configured:		PERL_VERSION=5.8.4
+$(PERLBD_ARCH)-5.12/.configured:		PERL_VERSION=5.12
+
+BUILD_32 =	$(PERL_VERSIONS:%=$(PERLBD_ARCH)-%/.built)
+INSTALL_32 =	$(BUILD_32:%/.built=%/.installed)
+TEST_32 =	$(BUILD_32:%/.built=%/.tested)
+
+
+COMPONENT_CONFIGURE_ENV +=	$(COMMON_PERL_ENV)
+COMPONENT_CONFIGURE_ENV +=	PERL="$(PERL)"
+$(PERLBD_ARCH)-%/.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 $(CONFIGURE_OPTIONS))
+	$(COMPONENT_POST_CONFIGURE_ACTION)
+	$(TOUCH) $@
+
+
+COMPONENT_BUILD_ENV +=	$(COMMON_PERL_ENV)
+$(PERLBD_ARCH)-%/.built:	$(PERLBD_ARCH)-%/.configured
+	$(COMPONENT_PRE_BUILD_ACTION)
+	(cd $(@D) ; $(ENV) $(COMPONENT_BUILD_ENV) \
+		$(GMAKE) $(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)
+$(PERLBD_ARCH)-%/.installed:	$(PERLBD_ARCH)-%/.built
+	$(COMPONENT_PRE_INSTALL_ACTION)
+	(cd $(@D) ; $(ENV) $(COMPONENT_INSTALL_ENV) $(GMAKE) \
+			$(COMPONENT_INSTALL_ARGS) $(COMPONENT_INSTALL_TARGETS))
+	$(COMPONENT_POST_INSTALL_ACTION)
+	$(TOUCH) $@
+
+
+COMPONENT_TEST_TARGETS =	check
+COMPONENT_TEST_ENV +=	$(COMMON_PERL_ENV)
+$(PERLBD_ARCH)-%/.tested:	$(PERLBD_ARCH)-%/.built
+	$(COMPONENT_PRE_TEST_ACTION)
+	(cd $(@D) ; $(ENV) $(COMPONENT_TEST_ENV) $(GMAKE) \
+			$(COMPONENT_TEST_ARGS) $(COMPONENT_TEST_TARGETS))
+	$(COMPONENT_POST_TEST_ACTION)
+	$(TOUCH) $@
+
+clean:: 
+	$(RM) -r $(BUILD_DIR) $(PROTO_DIR)