构建选项的名称(用于“make install”)指定 Web 应用程序的安装位置
我想为网络应用程序的 Makefile 提供“安装”目标。我希望能够安装它,例如如下所述:(
$ make install \
xxxdir=/var/www/cgi-bin
类似于如何将“bindir”用于普通程序,以及“mandir”/“infodir”用于文档)。
上面的 'xxxdir' 变量的 name 是否有任何标准(类似于 autotools 'bindir'、'sharedir' 等)例子?
您认为这样的构建配置变量应该如何命名?
I want to provide 'install' target for Makefile for web application. I'd like to be able to install it, for example like described below:
$ make install \
xxxdir=/var/www/cgi-bin
(similarly to how one would use 'bindir' for ordinary programs, and 'mandir' / 'infodir' for documentation).
Is there any standard (similar to autotools 'bindir', 'sharedir', etc.) for the name of 'xxxdir' variable in above example?
How do you think should such build configuration variable be named?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Web 应用程序术语通常指的是部署,而不是安装,因此建议使用
deploydir
。The web application lingo usually refers to deployments, rather than installs, so that would suggest
deploydir
.