Intel Visual Fortran9.0 的Makefile出错

Intel Visual Fortran9.0 的Makefile出错

我在Fedaro core5 下用 IVF9.0写了个简单的测试程序,结果出错
IP0 link : can not find "(“
ifort:error: problem during multi-file optimization compilation (code 1)
make:*** [test] Error1
在命令行可以编译且可执行,在makefile中出现以上提示错误

一个有module的简单程序,大家说说可能是什么问题阿

以下为我的makefile文件
     test: module.o test.o
             ifort  -o test   module.o test.o
     module.o : module.f90
              ifort  module.f90  -c
      test.o : test.f90
              ifort -c test.o test.f90
       clean:
                 rm -f *.o  *.mod  test

其中test.f90 是一个简单的F90程序,module.f90是一个模块      
看不懂       
哪个地方没有说清楚么?      
俺不懂 Fortran      
把编译器换成FC5自带的gfortran试试.