1. TARGETLIBS: This macro definition specifies additional library (.lib) files and object (.obj) files that should be linked into the target executable (.exe or .dll) file.
2. SOURCELIBS: This macro definition specifies library (.lib) files to be linked with the module specified in TARGETNAME. This macro definition is typically only used when you are creating a new .lib file from other .lib files. Use the TARGETLIBS macro when you are creating an executable (.exe or .dll) file.
也就是說, 若你的 TARGETTYPE 是 DYNLINK or PROGRAM, 則你應用 TARGETLIBS, 若是 LIBRARY, 則你可以考慮用 TARGETLIBS or SOURCELIBS.