suppose that you have a program which you installed that from source by make command . That program include files a.cc, b.cc, c.cc, d.cc and ... .
Now I changed a.cc a bit. In order to enable the changes I should compile the program again by make command.
My question: Is make command just recompile the changed files or recompile all of the files.
ps :all of the files are define on as .o on the Makefile.
*.oas a target, then it will act as an incremental compiler. – saiarcot895 Jul 18 '14 at 14:09make result, it should do an incremental build. – saiarcot895 Jul 18 '14 at 14:16