Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
make help给我一个目标名称列表,我可以获得构建这些目标之一所需的所有源文件的列表吗?
make help
你可以通过传递-p选项来制作。它输出所有规则和依赖项。但是您必须自己根据该输出构建依赖关系图。
-p
你可能无法得到你在makefile规则中没有提到的东西。但是,如果我理解正确,即您想知道/列出哪些文件被提到依赖于给定目标。那么这将对你有所帮助。make target VERBOSE=1 这将列出规则以及目标/包含和所有依赖项