是否可以使用 VS 2005 编译器自动检测 NMake makefile 中的源依赖性(实际上可以使用 GNU make 和 GCC 编译器)?
查看 海湾合作委员会。在 makefile 中包含 GCC 的输出文本会自动跟踪源依赖项而无需维护它们,因为 GCC 调用可以使用虚假目标自动化。
Is possible to detect automatically source dependency in a NMake makefile using VS 2005 compiler (as actually possible with GNU make and GCC compiler)?
Look at the '-M' option of GCC. Including the outputted text of GCC in the makefile cause to automatically track source dependencies without maintaining them, since the GCC invocation can be automated using a phony target.
发布评论