Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

F90 Module Files

Status
Not open for further replies.

CJason

Programmer
Oct 13, 2004
223
US
People who use Fortran 90....in particular, Fortran 90 module files...

Do you maintain your "f90mod" files with the rest of your code (i.e., under configuration management)? I'm new to the CM'ing of f90mod files, so I was wondering what the best course of action might be.

Thanks in advance!
 
They are generated files so I wouldn't bother.
 
xwb is right - don't bother.

But you should ensure that these files are compiled first on the build process. If you compile a program using a special module the compiler looks if a .mod file is available and uses what is found.

I name the files that contain my modules 'AAAmodules.f90' to make sure they show up first in the source files and are compiled first.

Then forget the rest.

Norbert
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top