Makefile revision 6295
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews#
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# CDDL HEADER START
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews#
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# The contents of this file are subject to the terms of the
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# Common Development and Distribution License (the "License").
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews# You may not use this file except in compliance with the License.
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews#
2eeb74d1cf5355dd98f6d507a10086e16bb08c4bTinderbox User# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# or http://www.opensolaris.org/os/licensing.
83a28ca274521e15086fc39febde507bcc4e145eMark Andrews# See the License for the specific language governing permissions
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# and limitations under the License.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt#
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# When distributing Covered Code, include this CDDL HEADER in each
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# If applicable, add the following below this CDDL HEADER, with the
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt# fields enclosed by brackets "[]" replaced with your own identifying
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews# information: Portions Copyright [yyyy] [name of copyright owner]
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews#
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews# CDDL HEADER END
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews#
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews#
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews#
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsBUILD_BITS= 64_and_32
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrewsinclude ../../make-rules/shared-macros.mk
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsCOMPONENT_NAME= libexpat
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsCOMPONENT_VERSION= 2.2.0
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsCOMPONENT_PROJECT_URL= http://expat.sourceforge.net/
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsCOMPONENT_SRC_NAME= expat
938440694b33cd752e9e4b71a526368b4811c177Tinderbox UserCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.bz2
19c7b1a0293498a3e36692c59646ed6e15ffc8d0Tinderbox UserCOMPONENT_ARCHIVE_HASH= \
0c27b3fe77ac1d5094ba3521e8142d9e7973133fMark Andrews sha256:d9e50ff2d19b3538bd2127902a89987474e1a4db8e43a66a4d1a712ab9a504ff
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsCOMPONENT_ARCHIVE_URL= \
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews http://downloads.sourceforge.net/project/expat/expat/$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsCOMPONENT_BUGDB= library/libexpat
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsTPNO= 29609
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrewsinclude $(WS_MAKE_RULES)/common.mk
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsCFLAGS += $(CPP_LARGEFILES)
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsPATCH_LEVEL = 2
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt
30eec077db2bdcb6f2a0dc388a3cdde2ede75ec1Mark AndrewsCOMPONENT_TEST_MASTER = $(COMPONENT_TEST_RESULTS_DIR)/results-all.master
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark AndrewsCOMPONENT_TEST_TRANSFORMS = \
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews '-e "/^Expat version: /d" ' \
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews '-e "s/^make\[.*$$/[EnD]/" ' \
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt '-e "/^tests\/runtests/,/^\[EnD\]/p" ' \
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews '-e "/.*/d" '
14a656f94b1fd0ababd84a772228dfa52276ba15Evan Hunt