nenhum alvo especificado e nenhum arquivo make encontrado. Pare

3

Eu tenho um problema aqui, você quer instalar o qtractor. Eu escrevi no terminal

cd /home/hl/Documenten/qtractor-0.6.0

depois disso eu escrevi e digitei:

sh ./configure

é isso que eu recebo.

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

depois disso eu escrevo e faço make

no targets specified and no makefile found. stop
    
por Lafci 24.04.2014 / 21:33

1 resposta

5

É um problema de dependência: você não tem as bibliotecas qt4 instaladas.

Instale todas as dependências com:

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

Agora, execute:

./configure

depois, digite:

make

e finalmente:

sudo make install
    
por girardengo 24.04.2014 / 21:49