Questions tagged «make»

对于与make有关的问题,该实用程序通过管理目标之间的依赖关系来自动执行构建过程。使用此标记可解决有关make本身的问题或有关使用make命令行实用程序引起的问题的问题。

2
从Makefile中进行Git提交
我正在处理的Latex项目有一个Makefile。Makefile不是我的强项,但是有一种方法可以执行以下操作: make git "My comment" 并让makefile执行: git commit -m "My comment" git push origin master ?
8 make  git 

2
从makefile变量获取顶层目录
获取makefile变量的顶级目录部分的最简单代码是什么?例: BUILD_DIR = dir/subdir/.../sub-a-dub-dir distclean: rm -rf <some code which evaluates to "dir" from $(BUILD_DIR)> PS:我不是说$(dir $(dir $(BUILD_DIR))),而是可以获取任何变量值的第一个目录部分的东西。
8 make 

3
为什么有些软件包使用“ make install”,而另一些软件包使用“ sudo make install”
我最近在服务器上安装了LAME编码器,以将wav转换为mp3,并且可以使用./configure; make; make install。 然后我尝试安装OGG编码器,并且需要'./configure,make,sudo make install'-我没有VPS(我宁愿不每月为VPN支付15美元,我也无法这样做)安装编解码器)。 我不熟悉sudo,但我知道sudo授予您权限-但我一直在尝试找出为什么有些make installs需要sudo访问而其他人则不需要sudo访问。我还没有找到答案。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.