#!/bin/sh
# Create a zip file containing the Mathomatic source distribution.

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