summaryrefslogtreecommitdiff
path: root/pysoundtouch/soundtouch/bootstrap
diff options
context:
space:
mode:
Diffstat (limited to 'pysoundtouch/soundtouch/bootstrap')
-rwxr-xr-xpysoundtouch/soundtouch/bootstrap26
1 files changed, 26 insertions, 0 deletions
diff --git a/pysoundtouch/soundtouch/bootstrap b/pysoundtouch/soundtouch/bootstrap
new file mode 100755
index 0000000..88ce3c6
--- /dev/null
+++ b/pysoundtouch/soundtouch/bootstrap
@@ -0,0 +1,26 @@
+# $Id: bootstrap 43 2008-12-25 17:54:41Z oparviai $
+
+#!/bin/sh
+
+if [ "$1" = "--clean" ]
+then
+ if [ -a Makefile ]
+ then
+ make maintainer-clean
+ elif [ -a configure ]
+ then
+ configure && $0 --clean
+ else
+ bootstrap && configure && $0 --clean
+ fi
+
+ rm -rf configure libtool aclocal.m4 `find . -name Makefile.in` autom4te*.cache config/config.guess config/config.h.in config/config.sub config/depcomp config/install-sh config/ltmain.sh config/missing config/mkinstalldirs config/stamp-h config/stamp-h.in
+
+ #gettextie files
+ #rm -f ABOUT-NLS config/config.rpath config/m4/codeset.m4 config/m4/gettext.m4 config/m4/glibc21.m4 config/m4/iconv.m4 config/m4/intdiv0.m4 config/m4/inttypes-pri.m4 config/m4/inttypes.m4 config/m4/inttypes_h.m4 config/m4/isc-posix.m4 config/m4/lcmessage.m4 config/m4/lib-ld.m4 config/m4/lib-link.m4 config/m4/lib-prefix.m4 config/m4/progtest.m4 config/m4/stdint_h.m4 config/m4/uintmax_t.m4 config/m4/ulonglong.m4 po/Makefile.in.in po/Rules-quot po/boldquot.sed po/en@boldquot.header po/en@quot.header po/insert-header.sin po/quot.sed po/remove-potcdate.sin
+
+else
+ export AUTOMAKE="automake --add-missing --foreign --copy"
+ autoreconf -fisv && rm -f `find . -name "*~"` && rm -f ChangeLog
+ exit $?
+fi