Automake ignore missing NEWS/AUTHORS/COPYING/etc. standard files

给你一囗甜甜゛ 提交于 2019-12-06 01:44:34

问题


Automake requires that the following "standard" files exist in the source directory of my project:

  • INSTALL
  • NEWS
  • README
  • COPYING
  • AUTHORS
  • ChangeLog

Obviously, none of these files are necessary for a program to build, but Automake refuses to run without them. I know about the --add-missing flag that will cause boilerplate files to be generated, but I would rather not have the files at all.

Is there a way to force Automake to run and ignore the missing files without generating them?


回答1:


Use the foreign option. Look up "strictness" in the documentation.



来源:https://stackoverflow.com/questions/18038060/automake-ignore-missing-news-authors-copying-etc-standard-files

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!