Most linux apps are compiled with:
make
make install clean
As I understood it, 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 will make
build if no arguments are specified (e.g. first command in my example)?