Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 112d20d5274acbb606acfe3594fd10aa10287b52 authored by cvs2svn on 20 July 2001, 14:55:28 UTC
This commit was manufactured by cvs2svn to create tag 'r211'.
Tip revision: 112d20d
make_static
#! /bin/sh

# This script tests and demonstrates the mechanism for building a
# static Python binary with an additional extension module using the
# generic Makefile.pre.in from the Misc directory.

./make_clean

cp ../../Misc/Makefile.pre.in .
cp ../../Modules/xxmodule.c .
echo xx xxmodule.c >Setup.in

make -f Makefile.pre.in boot
make Makefile
make static
back to top