make depends on the descriptors: the make file describes them: the binary file depends on the object files, each object file depends on the source file and headers ... when make is run, the date of the files is compared to determine what needs to be recompiled.
You can call one target directly so that you donβt create everything described in the Makefile.
In addition, make syntax provides substitution, vpath
All of this can be written in shell scripts, and you already have it.
philant Sep 26 '10 at 16:09 2010-09-26 16:09
source share