echo "Making the 'distremake' file from current Makefile.am and configure.in"
# Start
echo "echo \"Rebuilding entire distribution...\"" > distremake
echo "# Start" >> distremake
echo "echo \"" >> distremake
cat configure.in >> distremake
echo "\" > configure.in" >> distremake
echo "" >> distremake
echo "echo \"" >> distremake
cat Makefile.am >> distremake
echo "\" > Makefile.am" >> distremake
echo "# Stop" >> distremake
echo "echo \"Done.\"" >> distremake
chmod +x distremake
# Stop
echo "Done."
