#!/bin/sh
-aclocal $ACLOCAL_FLAGS
-autoheader
-automake --add-missing --copy --foreign
-touch depcomp
-autoconf
-./configure $*
-make
+aclocal $ACLOCAL_FLAGS || exit 1
+autoheader || exit 1
+automake --add-missing --copy --foreign || exit 1
+touch depcomp || exit 1
+autoconf || exit 1
+./configure $* || exit 1
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
fi
for f in install-sh mkinstalldirs missing; do
- cp -av $AUTOMAKE_DIR/$f .
+ cp -av $AUTOMAKE_DIR/$f . || exit 1
done
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing --copy
-touch depcomp
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing --copy || exit 1
+touch depcomp || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
fi
for f in install-sh mkinstalldirs missing; do
- cp -av $AUTOMAKE_DIR/$f .
+ cp -av $AUTOMAKE_DIR/$f . || exit 1
done
-aclocal $ACLOCAL_FLAGS
-automake --add-missing --copy
-touch depcomp
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --add-missing --copy || exit 1
+touch depcomp || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
\ No newline at end of file
fi
for f in install-sh mkinstalldirs missing; do
- cp -av $AUTOMAKE_DIR/$f .
+ cp -av $AUTOMAKE_DIR/$f . || exit 1
done
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing --copy
-touch depcomp
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing --copy || exit 1
+touch depcomp || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
fi
for f in install-sh mkinstalldirs missing; do
- cp -av $AUTOMAKE_DIR/$f .
+ cp -av $AUTOMAKE_DIR/$f . || exit 1
done
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing --copy
-touch depcomp
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing --copy || exit 1
+touch depcomp || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
#!/bin/bash
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
fi
for f in install-sh mkinstalldirs missing; do
- cp -av $AUTOMAKE_DIR/$f .
+ cp -av $AUTOMAKE_DIR/$f . || exit 1
done
-aclocal $ACLOCAL_FLAGS
-automake --add-missing --copy
-touch depcomp
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --add-missing --copy || exit 1
+touch depcomp || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
#!/bin/bash
-autoreconf -fi
+autoreconf -fi || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
#!/bin/bash
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
#!/bin/bash
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
#!/bin/bash
-autoreconf -fi
+autoreconf -fi || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
fi
for f in install-sh mkinstalldirs missing; do
- cp -av $AUTOMAKE_DIR/$f .
+ cp -av $AUTOMAKE_DIR/$f . || exit 1
done
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing --copy
-touch depcomp
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing --copy || exit 1
+touch depcomp || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
fi
for f in install-sh mkinstalldirs missing; do
- cp -av $AUTOMAKE_DIR/$f .
+ cp -av $AUTOMAKE_DIR/$f . || exit 1
done
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing --copy
-touch depcomp
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing --copy || exit 1
+touch depcomp || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
fi
for f in install-sh mkinstalldirs missing; do
- cp -av $AUTOMAKE_DIR/$f .
+ cp -av $AUTOMAKE_DIR/$f . || exit 1
done
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing --copy
-touch depcomp
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing --copy || exit 1
+touch depcomp || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
fi
for f in install-sh mkinstalldirs missing; do
- cp -av $AUTOMAKE_DIR/$f .
+ cp -av $AUTOMAKE_DIR/$f . || exit 1
done
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
#!/bin/bash
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
#!/bin/bash
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi
\ No newline at end of file
#!/bin/bash
-aclocal $ACLOCAL_FLAGS
-automake --foreign --add-missing
-autoconf
+aclocal $ACLOCAL_FLAGS || exit 1
+automake --foreign --add-missing || exit 1
+autoconf || exit 1
export CFLAGS='-O2 -Wall -pipe -g'
echo "CFLAGS=$CFLAGS"
echo "./configure $@"
-./configure $@
+./configure $@ || exit 1
unset CFLAGS
-make
+if [ -z "$GITCOMPILE_NO_MAKE" ]; then
+ make || exit 1
+fi