You run configure (you usually have to type ./configure as most people don't have the current directory in their search path). This builds a new Makefile. Type make This builds the program. That is, make would be executed, it would look for the first target in Makefile and do what the instructions said. The expected end result would be to build an executable program. Now, as root, type make install. This again invokes make, make finds the target install in Makefile and files the directions to install the program.
#./configure && make && make install
#tar zxvf "name of file".tar.gz#cd "name of file"#./configure && make && make install
make
$sudo apt-get install superkaramba