Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: f8cdb5c56f6a14b62ffb3201de45f586fe3a6500 authored by cvs2svn on 02 February 2001, 21:24:51 UTC
This commit was manufactured by cvs2svn to create tag 'r21a2'.
Tip revision: f8cdb5c
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