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: make -f foobar You can even use -f several times: make -f foo -f bar In which case make processes the files in order (or, equivalently, concatenates the files and processes the result). makefile and … Read more