qt4.6有个例子qtdemo,编译的提示Makefile.Release问题,错误信息如下
Configuration unchanged, skipping qmake step.
Starting: "E:\Qt\2010.04\mingw\bin\mingw32-make.exe"
E:/Qt/2010.04/mingw/bin/mingw32-make -f Makefile.Release
Makefile.Release:105: *** missing separator. Stop.
mingw32-make: *** [release] Error 2
mingw32-make[1]: Entering directory `E:/Qt/2010.04/qt/demos/qtdemo'
mingw32-make[1]: Leaving directory `E:/Qt/2010.04/qt/demos/qtdemo'
The process "E:\Qt\2010.04\mingw\bin\mingw32-make.exe" exited with code %2.
Error while building project qtdemo (target: Desktop)
When executing build step 'Make'
而Makefile.Release文件如下
####### Implicit rules
.SUFFIXES: .c .cpp .cc .cxx
{.moc}.cpp{.obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fo.obj\ @<<
$<
<< 这里是105行
{.moc}.cc{.obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fo.obj\ @<<
$<
<<
{.moc}.cxx{.obj\}.obj::
$(CXX) -c $(CXXFLAGS) $(INCPATH) -Fo.obj\ @<<
$<
<<
不知道该怎么修改?