我的问题简短而简单。我有我的源目录mySrcDir,我的Makefile
也位于其中,我想将它编译到我的构建目录myBuildDir。
我如何make
将/some/path/mySrcDir
的内容/another/path/myBuildDir
转换为awk
?
P.S:OS Ubuntu 14.04
答案 0 :(得分:1)
1)在您的构建目录中调用:
make -f /some/path/mySrcDir/your-makefile
-f选项用于指定您尝试“制作”的文件。
2)如果Makefile是由GNU autotools生成的,你可以试试这个:
./configure --prefix=/another/path/myBuildDir
然后make