12345678910111213141516171819202122232425262728293031 |
- #
- # Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
- # All rights reserved.
- # This component and the accompanying materials are made available
- # under the terms of the License "Eclipse Public License v1.0"
- # which accompanies this distribution, and is available
- # at the URL "http://www.eclipse.org/legal/epl-v10.html".
- #
- # Initial Contributors:
- # Nokia Corporation - initial contribution.
- #
- # Contributors:
- #
- # Description:
- # Utility makefile
- #
- # Build Python for Raptor
- ifndef (b_python)
- include python.mk
- endif
- RAPTOR_PYTHON_VER:=2.7.2
- RAPTOR_PYTHON_DIRVERSION:=$(subst .,,$(RAPTOR_PYTHON_VER))
- PYTHON_SOURCEDIR:=$(OUTPUTPATH)/Python-$(RAPTOR_PYTHON_VER)
- PYTHON_TAR:=$(SBS_HOME)/util/ext/Python-$(RAPTOR_PYTHON_VER).tar.bz2
- PYTHON_TAR_URL:=http://rene.europe.nokia.com/~raptorbot/files/$(RAPTOR_PYTHON_VER)/Python-$(RAPTOR_PYTHON_VER).tar.bz2 http://www.python.org/ftp/python/$(RAPTOR_PYTHON_VER)/Python-$(RAPTOR_PYTHON_VER).tar.bz2
- PYINSTALLROOT:=$(INSTALLROOT)/python27
- $(eval $(b_python))
|