Somewhere in Makefile there is a target that builds either the specific file or the files in the directory. Find that target and make it. Additionally, there may be a separate Makefile in that directory or one of its parents that is used for building them.
.am and .in files are for autotools, which is the step before ./configure. You should not need to modify them in normal use.
发布评论
评论(1)
在
Makefile
中的某个位置有一个目标,用于构建特定文件或目录中的文件。找到那个目标并实现它。此外,该目录或其父目录之一中可能有一个单独的Makefile
用于构建它们。.am 和 .in 文件用于自动工具,这是
./configure
之前的步骤。在正常使用中您不需要修改它们。Somewhere in
Makefile
there is a target that builds either the specific file or the files in the directory. Find that target and make it. Additionally, there may be a separateMakefile
in that directory or one of its parents that is used for building them..am and .in files are for autotools, which is the step before
./configure
. You should not need to modify them in normal use.