如何在终端上运行Netbeans makefile

时间:2013-05-21 10:46:51

标签: c++ netbeans makefile

我正试图通过我的一个C ++项目的终端运行netbeans makefile

执行时

   Make

,我收到以下错误:

...
/bin/sh: 1: -o: not found
make[1]: *** [nbproject/qt-Debug.mk] Error 127
...

我该怎么办?提前致谢。请注意,我可以通过Netbeans轻松构建程序。

编辑:我使用的是ubuntu 13.04,netbeans 7.3,linux终端。

1 个答案:

答案 0 :(得分:1)

我只是使用:

make

make CONF=Release

在项目根目录(Makefile所在的位置),它可以工作。我有一个简单的C ++项目,没有任何额外的东西。