I've this problem right now when I try to go static. (At QT Creator it all builds OK).
macbook-de-tcb13:qt-source TCB13$ cd /Users/TCB13/ABBK/ABBK
macbook-de-tcb13:ABBK TCB13$ make clean
make: *** No rule to make target `../../qt/mkspecs/macx-g++/qmake.conf', needed by `Makefile'. Stop.
macbmacbook-de-tcb13:ABBK TCB13$ PATH=/Users/TCB13/qt-source:$PATH
macbook-de-tcb13:ABBK TCB13$ export PATH
macbook-de-tcb13:ABBK TCB13$ qmake -config release
macbook-de-tcb13:ABBK TCB13$ make
make: *** No rule to make target `../../qt/mkspecs/macx-g++/qmake.conf', needed by `Makefile'. Stop.
macbook-de-tcb13:qt-source TCB13$ cd /Users/TCB13/ABBK/ABBK
macbook-de-tcb13:ABBK TCB13$ make clean
make: *** No rule to make target `../../qt/mkspecs/macx-g++/qmake.conf', needed by `Makefile'. Stop.
macbmacbook-de-tcb13:ABBK TCB13$ PATH=/Users/TCB13/qt-source:$PATH
macbook-de-tcb13:ABBK TCB13$ export PATH
macbook-de-tcb13:ABBK TCB13$ qmake -config release
macbook-de-tcb13:ABBK TCB13$ make
make: *** No rule to make target `../../qt/mkspecs/macx-g++/qmake.conf', needed by `Makefile'. Stop.
To copy to clipboard, switch view to plain text mode
Some weeks ago this was working ok, I think this happened after I update QT to the latest version, I've build QT statically from the source again but the problem remains...
Some help would be nice! Thanks.
Added after 1 50 minutes:

Originally Posted by
TCB13
I've this problem right now when I try to go static. (At QT Creator it all builds OK).
macbook-de-tcb13:qt-source TCB13$ cd /Users/TCB13/ABBK/ABBK
macbook-de-tcb13:ABBK TCB13$ make clean
make: *** No rule to make target `../../qt/mkspecs/macx-g++/qmake.conf', needed by `Makefile'. Stop.
macbmacbook-de-tcb13:ABBK TCB13$ PATH=/Users/TCB13/qt-source:$PATH
macbook-de-tcb13:ABBK TCB13$ export PATH
macbook-de-tcb13:ABBK TCB13$ qmake -config release
macbook-de-tcb13:ABBK TCB13$ make
make: *** No rule to make target `../../qt/mkspecs/macx-g++/qmake.conf', needed by `Makefile'. Stop.
macbook-de-tcb13:qt-source TCB13$ cd /Users/TCB13/ABBK/ABBK
macbook-de-tcb13:ABBK TCB13$ make clean
make: *** No rule to make target `../../qt/mkspecs/macx-g++/qmake.conf', needed by `Makefile'. Stop.
macbmacbook-de-tcb13:ABBK TCB13$ PATH=/Users/TCB13/qt-source:$PATH
macbook-de-tcb13:ABBK TCB13$ export PATH
macbook-de-tcb13:ABBK TCB13$ qmake -config release
macbook-de-tcb13:ABBK TCB13$ make
make: *** No rule to make target `../../qt/mkspecs/macx-g++/qmake.conf', needed by `Makefile'. Stop.
To copy to clipboard, switch view to plain text mode
Some weeks ago this was working ok, I think this happened after I update QT to the latest version, I've build QT statically from the source again but the problem remains...
Some help would be nice! Thanks.
Hi everyone, I solved by problem by recreating the MakeFile like this:
/Users/TCB13/qt-source/bin/qmake -config release -o Makefile /Users/TCB13/ABBK/ABBK/ABBK.pro
/Users/TCB13/qt-source/bin/qmake -config release -o Makefile /Users/TCB13/ABBK/ABBK/ABBK.pro
To copy to clipboard, switch view to plain text mode
Then issue the normal compile routine:
cd /Users/TCB13/ABBK/ABBK/
PATH=/Users/TCB13/qt-source/bin:$PATH; export PATH
qmake -config release; make; make clean
cd /Users/TCB13/ABBK/ABBK/
PATH=/Users/TCB13/qt-source/bin:$PATH; export PATH
qmake -config release; make; make clean
To copy to clipboard, switch view to plain text mode
And everything will work fine!
Bookmarks