各位大侠,请教一下linux系统下Fortran程序如何安装、编译和运行啊?
makefile文件如下:
[Make] 纯文本查看 复制代码
BIN=../bin/
FTN = g77
FFLAGS = -O2 -Wunused -Wno-globals -fno-f2c -fno-automatic -fno-backslash -fno-globals
baytap08: baytap08.f
$(FTN) $(FFLAGS) baytap08.f -o $(BIN)baytap08
我该如何安装这个Fortran程序,如何编译和运行呢?谢谢!
另外一个问题是:
cat input-file | baytap08 control-file results-file
cat input-file | baytap08 control-file results-file aux-file > output-file
这2句cat是啥意思啊?
|