#!/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
rm -f hard_stuff/psolve
echo Mathomatic development source code version `cat VERSION`+ | zip -rqz ~/am.zip *.c *.h makefile* compile* *.txt VERSION AUTHORS COPYING mathomatic.* zipsrc doc primes tests lib factorial m4 hard_stuff
echo ~/am.zip created.
