#!/bin/sh
args="" #" --disable-v4l"
#" --disable-sdl --disable-sdl.sound"
set LC_ALL=en_EN

#echo "*********************************"
#echo "./reconf > ../reconf.log 2>&1"
#echo "*********************************"
#./reconf > ../reconf.log 2>&1

echo "*********************************"
echo "./reconf-all > ../reconf-all.log 2>&1"
echo "*********************************"
./reconf-all > ../reconf-all.log 2>&1

echo "*********************************"
echo "./configure  -C "${args}" > ../configure.log 2>&1" 
echo "*********************************"
./configure  -C ${args} > ../configure.log 2>&1

echo "*********************************"
echo "make -j2 > ../make.log 2>&1"
echo "*********************************"
make -j2 > ../make.log 2>&1

echo "*********************************"
echo "sudo make install > ../make_install.log 2>&1"
echo "*********************************"
sudo make install > ../make_install.log 2>&1

echo "*********************************"
echo "svnMake finished"
echo "*********************************"
