I have simple question related to LIB command I have one sum.cpp file which contains one function add(int,int). Now library name a.lib depends on sum.obj file and one another library name b.lib which depends upon a.lib and sum.obj
so scenario is
a.lib: sum.obj
b.lib : sum.obj a.lib
everything works fine but my doubt is why lib command not issuing duplicate warning or error.