Makefile revision 618
294N/A#
294N/A# CDDL HEADER START
294N/A#
294N/A# The contents of this file are subject to the terms of the
294N/A# Common Development and Distribution License (the "License").
294N/A# You may not use this file except in compliance with the License.
294N/A#
294N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
294N/A# or http://www.opensolaris.org/os/licensing.
294N/A# See the License for the specific language governing permissions
294N/A# and limitations under the License.
294N/A#
294N/A# When distributing Covered Code, include this CDDL HEADER in each
294N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
294N/A# If applicable, add the following below this CDDL HEADER, with the
294N/A# fields enclosed by brackets "[]" replaced with your own identifying
294N/A# information: Portions Copyright [yyyy] [name of copyright owner]
294N/A#
294N/A# CDDL HEADER END
294N/A#
294N/A
294N/A#
294N/A# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
294N/A#
294N/A
294N/Ainclude ../../make-rules/shared-macros.mk
294N/A
294N/ACOMPONENT_NAME= otp_src
294N/ACOMPONENT_VERSION_MAJOR= 12
586N/ACOMPONENT_VERSION_MINOR= B
294N/ACOMPONENT_VERSION_MICRO= 5
294N/A# IPS_COMPONENT_VERSION needs update whenever this is changed
294N/ACOMPONENT_VERSION= R$(COMPONENT_VERSION_MAJOR)$(COMPONENT_VERSION_MINOR)-$(COMPONENT_VERSION_MICRO)
586N/ACOMPONENT_PROJECT_URL= http://www.erlang.org/
294N/ACOMPONENT_SRC= $(COMPONENT_NAME)_$(COMPONENT_VERSION)
294N/ACOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
294N/ACOMPONENT_ARCHIVE_HASH= sha1:6c45509acf70d35d5def2cbefd86ada093c1ac3a
294N/ACOMPONENT_ARCHIVE_URL= $(COMPONENT_PROJECT_URL)download/$(COMPONENT_ARCHIVE)
294N/A
294N/A# manpages
294N/ACOMPONENT_NAME_1= otp_doc_man
294N/ACOMPONENT_SRC_1= $(COMPONENT_NAME_1)_$(COMPONENT_VERSION)
294N/ACOMPONENT_ARCHIVE_1= $(COMPONENT_SRC_1).tar.gz
294N/ACOMPONENT_ARCHIVE_HASH_1= sha1:ae7036bd2afc9d1fca97f0de2eca84f56656def8
294N/ACOMPONENT_ARCHIVE_URL_1= $(COMPONENT_PROJECT_URL)download/$(COMPONENT_ARCHIVE_1)
294N/A
294N/A# HTML documentation
294N/ACOMPONENT_NAME_2= otp_doc_html
294N/ACOMPONENT_SRC_2= $(COMPONENT_NAME_2)_$(COMPONENT_VERSION)
294N/ACOMPONENT_ARCHIVE_2= $(COMPONENT_SRC_2).tar.gz
294N/ACOMPONENT_ARCHIVE_HASH_2= sha1:0bd369d02051e01bac58c9b8665bd3538e116f51
294N/ACOMPONENT_ARCHIVE_URL_2= $(COMPONENT_PROJECT_URL)download/$(COMPONENT_ARCHIVE_2)
294N/A
294N/Ainclude ../../make-rules/prep.mk
294N/Ainclude ../../make-rules/configure.mk
294N/Ainclude ../../make-rules/ips.mk
294N/A
294N/A# IPS_COMPONENT_VERSION is by default set to $(COMPONENT_VERSION) but it is not
294N/A# enough for us. We need to include the $(COMPONENT_SUBVERSION) somehow.
294N/A# Because the IPS_COMPONENT_VERSION cannot contain letters we use mapping:
294N/A# R(major)(minor)-(micro) - (major).(minor as number).(micro)
294N/AIPS_COMPONENT_VERSION= $(COMPONENT_VERSION_MAJOR).2.$(COMPONENT_VERSION_MICRO)
294N/A
294N/A# Built in SFW with gcc and builds cleanly now only with gcc
294N/ACOMPILER = gcc
294N/A
294N/ACONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
294N/ACONFIGURE_OPTIONS += CPPFLAGS="$(CPPFLAGS) -I/usr/include/gd2"
294N/ACONFIGURE_OPTIONS += INSTALL="/usr/ucb/install -c"
294N/ACONFIGURE_OPTIONS += --enable-smp-support
294N/ACONFIGURE_OPTIONS += --enable-threads
294N/ACONFIGURE_OPTIONS += --enable-hipe
CONFIGURE_OPTIONS += --with-ssl
CONFIGURE_OPTIONS += --enable-dynamic-ssl-lib
CONFIGURE_OPTIONS.64 += LDFLAGS="$(LDFLAGS) -m64"
CONFIGURE_OPTIONS.64 += LIBS="-m64"
# Use cp(1) instead of cloney because erlang's 'install' target uses 'tar'
# to copy files and our tar doesn't handle long links by default. Between
# the use of 'tar' and 'ld', a path adjustment wasn't an option due to the
# need for /usr/bin/ld and /usr/gnu/bin/tar. Perhaps this can be looked
# at when we upgrade to a more current version.
COMPONENT_PRE_CONFIGURE_ACTION = \
($(CP) -rp $(SOURCE_DIR)/. $(@D))
CONFIGURE_SCRIPT = $(@D)/configure
COMPONENT_INSTALL_ARGS += INSTALL_PREFIX=$(PROTO_DIR)
# common targets
build: $(BUILD_32_and_64)
install: $(INSTALL_32_and_64)
# Undelivered useless files:
# erlang/lib/crypto-*/priv/obj
# erlang/lib/ssl-*/priv/obj
# erlang/Install
# erlang/misc
# erlang/*/*.bat
# manpages: start.1 werl.1
$(RM) -r documentation
$(MKDIR) documentation && cd documentation && \
$(UNPACK) $(UNPACK_ARGS) ../$(COMPONENT_ARCHIVE_1) && \
$(UNPACK) $(UNPACK_ARGS) ../$(COMPONENT_ARCHIVE_2)
# remove INSTALL_PREFIX from path
$(PERL) -pi -e "s|$(PROTO_DIR)||g" $(PROTO_DIR)/usr/lib/erlang/bin/erl \
$(PROTO_DIR)/usr/lib/$(MACH64)/erlang/bin/erl \
$(PROTO_DIR)/usr/lib/erlang/releases/RELEASES \
$(PROTO_DIR)/usr/lib/$(MACH64)/erlang/releases/RELEASES
clean::
$(RM) -r documentation
test: $(NO_TESTS)
BUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
include ../../make-rules/depend.mk