#!/bin/sh echo echo "====================================" echo "This script is for maintainers only!" echo "====================================" echo rm -f config.h configure config.cache aclocal.m4 config.log stamp-h* # remove all Makefiles #rm -f Makefile platon/Makefile doc/Makefile find . -depth -name Makefile -exec rm -f {} \; find . -depth -type d -name .deps -exec rm -rf {} \; #rm -f doc/Doxyfile rm -f lib*.so lib*.a *.o echo running autoheader && autoheader && \ echo running aclocal && aclocal && \ echo running autoconf && autoconf && \ echo running ./configure && \ ./configure $* && \ make clean && \ make && \ make documentation echo echo "====================================" echo "This script is for maintainers only!" echo "====================================" echo