执行 automake 命令,以便生成 Makefile.in 文件:

    #增加参数 --add-missing ,表示如果在构建的过程中,发现缺少某些文件,会为我们自动添加。
    automake --add-missing

    下图是执行 automake 命令前后的对比图:

    执行 automake - 图1


    我们发现其中多出了一个 Makefile.in 文件,其中 install-sh、 missing、 depcomp 就是参数 --add-missing发现缺少的文件并为我们自动添加的3个文件。