我正在尝试编译很多模块,
gfortran -c FileA.f FileB.f FileC.f
现在,这将同时输出.mod
个文件和.o
.mod
文件可以为easily sent to whatever directory with the -J flag
我找不到用于存储.o files
的类似选项吗?
很明显,我可以为一个文件
gfortran -c FileA.f -o /path/to/directory/FileA.mod
但这不适用于编译多个模块。
有什么提示吗?