Apparently the code to forestall Tk eating events was too aggressive (Tk user input...
[python/dscho.git] / Demo / extend / make_shared
blobb5fbe24300adb16c029740dc943dff7ea416403a
1 #! /bin/sh
3 # This script tests and demonstrates the mechanism for building a
4 # shared library for an additional extension module using the
5 # generic Makefile.pre.in from the Misc directory.
7 ./make_clean
9 cp ../../Misc/Makefile.pre.in .
10 cp ../../Modules/xxmodule.c .
11 echo '*shared*' >Setup.in
12 echo xx xxmodule.c >>Setup.in
14 make -f Makefile.pre.in boot
15 make Makefile
16 make