Chinaunix

标题: Linux系统下运行Fortran程序的makefile [打印本页]

作者: baytap    时间: 2016-03-03 14:54
标题: Linux系统下运行Fortran程序的makefile
请教一下各位,linux系统下运行的Fortran程序的makefile文件如下:


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


请教一下大家这几行语言具体是什么意思啊?我该如何运行和编译呢?


另外一个问题是:
cat input-file | baytap08 control-file results-file
cat input-file | baytap08 control-file results-file aux-file > output-file

这2句cat是啥意思啊?
非常感谢!

作者: richyhuang    时间: 2016-03-03 15:19
前面几行那时makefile的语法,
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
               
最后是这样
g77 -O2  -Wunused -Wno-globals -fno-f2c -fno-automatic -fno-backslash -fno-globals baytap08.f -o ../bin/baytap08

cat 是linux shell下面的一个命令工具而已
稍微熟悉linux就知道了
作者: baytap    时间: 2016-03-03 15:21
哦,那请教一下我该如何运行这个makefile啊?该怎么编译Fortran程序呢?感谢感谢! 回复 2# richyhuang


   
作者: richyhuang    时间: 2016-03-08 16:39
baytap 发表于 2016-03-03 15:21
哦,那请教一下我该如何运行这个makefile啊?该怎么编译Fortran程序呢?感谢感谢! 回复 2# richyhua ...


你在当前路径下面输入

make -f makefile

试试,只有你的编译环境设置对,就可以编译了,
没用 过fortran语言啊,我们都是使用来编译c或者c++的.




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2