Makefile revision 618
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen#
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# CDDL HEADER START
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen#
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# The contents of this file are subject to the terms of the
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# Common Development and Distribution License (the "License").
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# You may not use this file except in compliance with the License.
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen#
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# or http://www.opensolaris.org/os/licensing.
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# See the License for the specific language governing permissions
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# and limitations under the License.
cf63dc8723b971cc80638fccbf494d961cbafc7fTimo Sirainen#
cf63dc8723b971cc80638fccbf494d961cbafc7fTimo Sirainen# When distributing Covered Code, include this CDDL HEADER in each
cf63dc8723b971cc80638fccbf494d961cbafc7fTimo Sirainen# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
cf63dc8723b971cc80638fccbf494d961cbafc7fTimo Sirainen# If applicable, add the following below this CDDL HEADER, with the
cf63dc8723b971cc80638fccbf494d961cbafc7fTimo Sirainen# fields enclosed by brackets "[]" replaced with your own identifying
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# information: Portions Copyright [yyyy] [name of copyright owner]
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen#
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# CDDL HEADER END
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen#
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen#
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen#
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Siraineninclude ../../make-rules/shared-macros.mk
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenCOMPONENT_NAME= sox
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenCOMPONENT_VERSION= 14.3.0
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenCOMPONENT_PROJECT_URL= http://sox.sourceforge.net/
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenCOMPONENT_ARCHIVE_HASH= sha1:34b8e991ba8511fa9683e9e9d356fb7f4179d03c
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenCOMPONENT_ARCHIVE_URL= http://downloads.sourceforge.net/project/$(COMPONENT_NAME)/$(COMPONENT_NAME)/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Siraineninclude ../../make-rules/prep.mk
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Siraineninclude ../../make-rules/configure.mk
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Siraineninclude ../../make-rules/ips.mk
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenCONFIGURE_OPTIONS += --disable-static
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenCONFIGURE_OPTIONS += --disable-gomp
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenCONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen# common targets
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainenbuild: $(BUILD_32_and_64)
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Siraineninstall: $(INSTALL_32_and_64)
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainentest: $(NO_TESTS)
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen
4eecd3e2aadb20768a60f701e329b4345d04430cTimo SirainenBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Siraineninclude ../../make-rules/depend.mk
4eecd3e2aadb20768a60f701e329b4345d04430cTimo Sirainen