#!/bin/sh

#by SiSch

if ./configure $arg$1 $arg$2 $arg$3 $arg$4 $arg$5; then
	if make; then
  		if make install; then
			echo
			echo ---- Success! ----
			echo
		else #make install
			echo
			echo ---- Make Install Error ----
			echo
		fi #make install

	else #make
		echo
		echo ---- Make Error ----
		echo
	fi #make

else #configure
	echo
	echo ---- Configure Error ----
	echo
fi #configure

./kryptosf/kryptosf


