Makefile revision 1258
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe#
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# CDDL HEADER START
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe#
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# The contents of this file are subject to the terms of the
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# Common Development and Distribution License (the "License").
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# You may not use this file except in compliance with the License.
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe#
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# or http://www.opensolaris.org/os/licensing.
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# See the License for the specific language governing permissions
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# and limitations under the License.
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe#
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# When distributing Covered Code, include this CDDL HEADER in each
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# If applicable, add the following below this CDDL HEADER, with the
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# fields enclosed by brackets "[]" replaced with your own identifying
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# information: Portions Copyright [yyyy] [name of copyright owner]
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe#
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# CDDL HEADER END
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe#
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe#
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe#
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxeinclude ../../make-rules/shared-macros.mk
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCOMPONENT_NAME= sox
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCOMPONENT_VERSION= 14.4.0
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCOMPONENT_PROJECT_URL= http://sox.sourceforge.net/
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCOMPONENT_ARCHIVE_HASH= \
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe sha256:3ee34b14dd267de378e8a117aae81ec4cae330772342e6a55bbf6520a0a88aa3
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCOMPONENT_ARCHIVE_URL= http://downloads.sourceforge.net/project/$(COMPONENT_NAME)/$(COMPONENT_NAME)/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCOMPONENT_BUGDB= utility/sox
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxeinclude ../../make-rules/prep.mk
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxeinclude ../../make-rules/configure.mk
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxeinclude ../../make-rules/ips.mk
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCONFIGURE_OPTIONS += --disable-static
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCONFIGURE_OPTIONS += --disable-gomp
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeCONFIGURE_OPTIONS += CFLAGS="$(CFLAGS)"
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe# common targets
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxebuild: $(BUILD_32_and_64)
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxeinstall: $(INSTALL_32_and_64)
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxetest: $(NO_TESTS)
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric SaxeBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxeinclude ../../make-rules/depend.mk
0e7515250c8395f368aa45fb9acae7c4f8f8b786Eric Saxe