Makefile revision 727
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp#
0fdefaa9ca017edfb76b736c825b34186f33045aTripp# CDDL HEADER START
0fdefaa9ca017edfb76b736c825b34186f33045aTripp#
0fdefaa9ca017edfb76b736c825b34186f33045aTripp# The contents of this file are subject to the terms of the
0fdefaa9ca017edfb76b736c825b34186f33045aTripp# Common Development and Distribution License (the "License").
66ca16dd76367c074fe4df1dcf7b555489a9bf85Tripp# You may not use this file except in compliance with the License.
a75ebc38c1de401b679953a9b87bd323f0f48d02Tripp#
66ca16dd76367c074fe4df1dcf7b555489a9bf85Tripp# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
66ca16dd76367c074fe4df1dcf7b555489a9bf85Tripp# or http://www.opensolaris.org/os/licensing.
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp# See the License for the specific language governing permissions
9eaaa502227248d304ac9170902697d02158c1d9Tripp# and limitations under the License.
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp#
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp# When distributing Covered Code, include this CDDL HEADER in each
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp# If applicable, add the following below this CDDL HEADER, with the
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp# fields enclosed by brackets "[]" replaced with your own identifying
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp# information: Portions Copyright [yyyy] [name of copyright owner]
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp#
828c58761d90445b8b9d20a82d85dc1479317f71Tripp# CDDL HEADER END
828c58761d90445b8b9d20a82d85dc1479317f71Tripp#
828c58761d90445b8b9d20a82d85dc1479317f71Tripp# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
828c58761d90445b8b9d20a82d85dc1479317f71Tripp#
828c58761d90445b8b9d20a82d85dc1479317f71Trippinclude ../../../make-rules/shared-macros.mk
04f886d0ad2a12c3c0e4ec29a1c42e8732e9327fTripp
828c58761d90445b8b9d20a82d85dc1479317f71TrippPATH=/usr/bin:/usr/gnu/bin:/usr/sbin
828c58761d90445b8b9d20a82d85dc1479317f71Tripp
828c58761d90445b8b9d20a82d85dc1479317f71TrippCOMPONENT_NAME= M2Crypto
828c58761d90445b8b9d20a82d85dc1479317f71TrippCOMPONENT_VERSION= 0.21.1
a75ebc38c1de401b679953a9b87bd323f0f48d02TrippCOMPONENT_PROJECT_URL= http://chandlerproject.org/Projects/MeTooCrypto/
a75ebc38c1de401b679953a9b87bd323f0f48d02TrippCOMPONENT_SRC= $(COMPONENT_NAME)-$(COMPONENT_VERSION)
a75ebc38c1de401b679953a9b87bd323f0f48d02TrippCOMPONENT_ARCHIVE= $(COMPONENT_SRC).tar.gz
a75ebc38c1de401b679953a9b87bd323f0f48d02TrippCOMPONENT_ARCHIVE_HASH= sha1:3c7135b952092e4f2eee7a94c5153319cccba94e
a75ebc38c1de401b679953a9b87bd323f0f48d02TrippCOMPONENT_ARCHIVE_URL= http://pypi.python.org/packages/source/M/M2Crypto/$(COMPONENT_ARCHIVE)
a75ebc38c1de401b679953a9b87bd323f0f48d02Tripp
a75ebc38c1de401b679953a9b87bd323f0f48d02Trippinclude $(WS_TOP)/make-rules/prep.mk
a75ebc38c1de401b679953a9b87bd323f0f48d02Trippinclude $(WS_TOP)/make-rules/setup.py.mk
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTrippinclude $(WS_TOP)/make-rules/ips.mk
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp# build modules PIC (needed for Python 2.7)
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTrippCFLAGS += $(CC_PIC)
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp# common targets
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTrippbuild: $(BUILD_32_and_64)
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTrippinstall: $(INSTALL_32_and_64)
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripptest: $(NO_TESTS)
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTrippBUILD_PKG_DEPENDENCIES = $(BUILD_TOOLS)
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTrippinclude $(WS_TOP)/make-rules/depend.mk
09688ec5ffb8b9cf9883a770e2f9ebd60b28888dTripp