makefile is a configuration file for the make command
it's a file with commands written necessary for compiling and building binary from a large amount of sources in different directories
makefile is a config file for GNU make, a build tool Since compiling C, C++ code includes creating objects and compile them with other and so on... Makefile allows you config the same, you write target, depends and neccessary commands in a way the whole project is to be compiled. The make will parse it and run the build in the correct sequence
Обсуждают сегодня