The difference between .mk file and Makefile

A make file can have any name. The -f option of make is used to specify which file to use: You can even use -f several times: In which case make processes the files in order (or, equivalently, concatenates the files and processes the result). makefile and Makefile are special names because if make is called without the -f option it automatically searches for them, in this order, and use the first … Read more