Preventing multiple executions of a Makefile
Often the automatic builds are controlled by the make tools using the
rules defined in so named Makefile. make is very nice since it
allow a smooth control of the build with a direct link with dependencies.
Therefore only what is need to be build is built. A rule is ...