configure.mk revision 151
72N/A#
72N/A# CDDL HEADER START
72N/A#
72N/A# The contents of this file are subject to the terms of the
72N/A# Common Development and Distribution License (the "License").
72N/A# You may not use this file except in compliance with the License.
72N/A#
72N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
72N/A# or http://www.opensolaris.org/os/licensing.
72N/A# See the License for the specific language governing permissions
72N/A# and limitations under the License.
72N/A#
72N/A# When distributing Covered Code, include this CDDL HEADER in each
72N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
72N/A# If applicable, add the following below this CDDL HEADER, with the
72N/A# fields enclosed by brackets "[]" replaced with your own identifying
72N/A# information: Portions Copyright [yyyy] [name of copyright owner]
72N/A#
72N/A# CDDL HEADER END
72N/A#
72N/A# Copyright (c) 2010, 2011, Oracle and/or its affiliates. All rights reserved.
72N/A#
72N/A
72N/A#
72N/A# Rules and Macros for building opens source software that uses configure /
72N/A# GNU auto* tools to configure their build for the system they are on. This
72N/A# uses GNU Make to build the components to take advantage of the viewpath
72N/A# support and build multiple version (32/64 bit) from a shared source.
72N/A#
72N/A# To use these rules, include ../make-rules/configure.mk in your Makefile
72N/A# and define "build", "install" targets appropriate to building your component.
72N/A# Ex:
72N/A#
72N/A# build: $(SOURCE_DIR)/build/$(MACH32)/.built \
72N/A# $(SOURCE_DIR)/build/$(MACH64)/.built
72N/A#
72N/A# install: $(SOURCE_DIR)/build/$(MACH32)/.installed \
72N/A# $(SOURCE_DIR)/build/$(MACH64)/.installed
72N/A#
72N/A# Any additional pre/post configure, build, or install actions can be specified
72N/A# in your make file by setting them in on of the following macros:
72N/A# COMPONENT_PRE_CONFIGURE_ACTION, COMPONENT_POST_CONFIGURE_ACTION
72N/A# COMPONENT_PRE_BUILD_ACTION, COMPONENT_POST_BUILD_ACTION
72N/A# COMPONENT_PRE_INSTALL_ACTION, COMPONENT_POST_INSTALL_ACTION
72N/A#
72N/A# If component specific make targets need to be used for build or install, they
72N/A# can be specified in
72N/A
72N/A# COMPONENT_BUILD_TARGETS, COMPONENT_INSTALL_TARGETS
72N/A#
72N/A
72N/ACONFIG_SHELL = /bin/bash
72N/A
72N/ACONFIGURE_PREFIX = /usr
72N/A
72N/ACONFIGURE_BINDIR.32 = $(CONFIGURE_PREFIX)/bin
72N/ACONFIGURE_BINDIR.64 = $(CONFIGURE_PREFIX)/bin/$(MACH64)
72N/ACONFIGURE_LIBDIR.32 = $(CONFIGURE_PREFIX)/lib
72N/ACONFIGURE_LIBDIR.64 = $(CONFIGURE_PREFIX)/lib/$(MACH64)
75N/ACONFIGURE_SBINDIR.32 = $(CONFIGURE_PREFIX)/sbin
72N/ACONFIGURE_SBINDIR.64 = $(CONFIGURE_PREFIX)/sbin/$(MACH64)
72N/ACONFIGURE_MANDIR = $(CONFIGURE_PREFIX)/share/man
72N/ACONFIGURE_LOCALEDIR = $(CONFIGURE_PREFIX)/share/locale
72N/A# all texinfo documentation seems to go to /usr/share/info no matter what
72N/ACONFIGURE_INFODIR = /usr/share/info
72N/ACONFIGURE_INCLUDEDIR = /usr/include
72N/A
72N/ACONFIGURE_ENV = CONFIG_SHELL="$(CONFIG_SHELL)"
72N/A
72N/ACONFIGURE_OPTIONS += CC="$(CC)"
CONFIGURE_OPTIONS += CXX="$(CCC)"
CONFIGURE_OPTIONS += --prefix=$(CONFIGURE_PREFIX)
CONFIGURE_OPTIONS += --mandir=$(CONFIGURE_MANDIR)
CONFIGURE_OPTIONS += --bindir=$(CONFIGURE_BINDIR.$(BITS))
CONFIGURE_OPTIONS += --libdir=$(CONFIGURE_LIBDIR.$(BITS))
CONFIGURE_OPTIONS += --sbindir=$(CONFIGURE_SBINDIR.$(BITS))
CONFIGURE_OPTIONS += $(CONFIGURE_OPTIONS.$(BITS))
COMPONENT_INSTALL_ARGS += DESTDIR=$(PROTO_DIR)
$(BUILD_DIR)/$(MACH32)/.configured: BITS=32
$(BUILD_DIR)/$(MACH64)/.configured: BITS=64
$(BUILD_DIR)/$(MACH32)/.built: BITS=32
$(BUILD_DIR)/$(MACH64)/.built: BITS=64
$(BUILD_DIR)/$(MACH32)/.installed: BITS=32
$(BUILD_DIR)/$(MACH64)/.installed: BITS=64
CONFIGURE_ENV += $(CONFIGURE_ENV.$(BITS))
CONFIGURE_OPTIONS += $(CONFIGURE_OPTIONS.$(BITS))
# set the default target for installation of the component
COMPONENT_INSTALL_TARGETS = install
# configure the unpacked source for building 32 and 64 bit version
CONFIGURE_SCRIPT = $(SOURCE_DIR)/configure
$(BUILD_DIR)/%/.configured: $(SOURCE_DIR)/.prep
($(RM) -rf $(@D) ; $(MKDIR) $(@D))
$(COMPONENT_PRE_CONFIGURE_ACTION)
(cd $(@D) ; $(ENV) $(CONFIGURE_ENV) $(CONFIG_SHELL) \
$(CONFIGURE_SCRIPT) $(CONFIGURE_OPTIONS))
$(COMPONENT_POST_CONFIGURE_ACTION)
$(TOUCH) $@
# build the configured source
$(BUILD_DIR)/%/.built: $(BUILD_DIR)/%/.configured
$(COMPONENT_PRE_BUILD_ACTION)
(cd $(@D) ; $(ENV) $(COMPONENT_BUILD_ENV) \
$(GMAKE) $(COMPONENT_BUILD_ARGS) $(COMPONENT_BUILD_TARGETS))
$(COMPONENT_POST_BUILD_ACTION)
$(TOUCH) $@
# install the built source into a prototype area
$(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) $@
clean::
$(RM) -r $(BUILD_DIR) $(PROTO_DIR)