#!/bin/sh
# Create a zip file containing the Mathomatic source distribution with no object files and no binary executables.

rm -f ~/am.zip
rm -f lib/*.o lib/*.a factorial/*.pyc
zip -r ~/am.zip *.c *.h makefile* compile* *.txt VERSION COPYING mathomatic.* zipsrc doc primes tests lib factorial hard_stuff >/dev/null
echo ~/am.zip created.
