#!/bin/sh

# Clean up temporary files from the build process

# rm -rf autom4te.cache
# rm -f config.log config.status
rm -f src/*.o src/*.so src/symbols.rds
find . -name \*~ | xargs rm -f

exit 0
