没有指定目标,也没有找到makefile。 停

我有问题你去,我想安装qtractor。 我在终端写道

cd /home/hl/Documenten/qtractor-0.6.0 

之后我写了并输入:

 sh ./configure 

这就是我得到的。

 checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking how to run the C preprocessor... gcc -E checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking how to run the C++ preprocessor... g++ -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking whether gcc needs -traditional... no checking for Qt library version >= 4.4... no; Qt 4.4 or greater is required 

在此之后我写下并输入make

 no targets specified and no makefile found. stop 

是依赖性问题:您没有安装qt4库。

安装所有依赖项:

 sudo apt-get install libqt4-dev sudo apt-get install libjack0 sudo apt-get install libjack-dev sudo apt-get install libasound2-dev sudo apt-get install libsndfile1-dev 

现在,运行:

 ./configure 

之后,键入:

 make 

最后:

 sudo make install