Hello
Most linux apps are compiled with
make
make install clean
As i understood, make takes names of build targets as arguments. so "install" is a target that copies some files and after that "clean" is a target that removes temporary files.
But what target "make" will build if no arguments are specified (first command in my example)?