Guido van Rossum | 661aebc | 1997-07-19 23:14:13 +0000 | [diff] [blame^] | 1 | This directory contains a test and demonstration of the power of the |
| 2 | generic Makefile.pre.in from the Misc directory. There are three |
| 3 | shell scripts. Study the source of the scripts to find out how they |
| 4 | work (it's really easy). |
| 5 | |
| 6 | ./make_static Make a static python binary with the xx module |
| 7 | linked in. To test this, run ./python and try to |
| 8 | import xx. |
| 9 | |
| 10 | ./make_shared Make a shared module xx. To test this, run the |
| 11 | standard python interpreter in this directory and try |
| 12 | to import xx. |
| 13 | |
| 14 | ./make_clean Clean up after either of the above. Note that each |
| 15 | scripts starts by calling this script, to begin with a |
| 16 | clean slate. |