From d6678677780f0e5a65385abe53f2656921066741 Mon Sep 17 00:00:00 2001 From: vlefevre Date: Fri, 27 Jul 2012 09:41:47 +0000 Subject: Added autogen.sh sh script from Daniel Richard G. to install/update the autotools files and clean up caches (useful before a release). git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@8365 280ebfd0-de03-0410-8827-d642c229c3f4 --- autogen.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 autogen.sh (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 000000000..90c840a10 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +# "autoreconf -f" will clobber our INSTALL file with a generic one if we +# don't move it out of the way + +mv -f INSTALL INSTALL.$$.tmp + +autoreconf -v -f -i -W all + +rm -f INSTALL +mv -f INSTALL.$$.tmp INSTALL + +rm -rf autom4te.cache -- cgit v1.2.1