English 中文(简体)
常规Makefile?
原标题:
  • 时间:2008-11-19 00:41:01
  •  标签:

Is there a generic makefile i can use to build a simple c++ project? on windows? i modified a working wii makefile to win32 but could not build properly (difference in make? the make app and the makefile seem to be found). I did a little hack and made a copy of mingw32-make as make.

-edit- export PATH seem to be the reason i got my old error (make: make Command not found) now using my new makefile (single file instead of 2) i get

"make" make[1]: Nothing to be done for `/c/nightly/test/test.exe .

this is my current makefile http://pastie.org/318548

我正在使用MinGW。我已经从该网站安装了一个,还有一个带有Codeblocks的安装程序。 make 二进制文件是一个复制的 mingw32-make.exe,其中我去掉了前缀。运行 make -h 命令,我得到的输出是“这个程序是为 i686-pc-msys 构建的”,因此看起来是正确的。

问题回答

你的 make 文件大部分看起来很好。

请检查gcc和g++是否正确安装。

此外,Clean目标使用:rm -rf

rm是Unix(Linux等)的删除命令。为了在Windows上使用rm,我建议使用Cygwin。

你在使用哪个C++编译器?

如错误信息所指示,该问题并非来自您的Makefile。

"make"本身無法在您的路徑中找到。





相关问题
热门标签