From a command line, I had a couple of scripts which did the following:
To compile:
gFortran -c %1.f95
Then to put each object and MOD into a static library:
ar r MyLib.a %1.o %1,mod
And finally to compile the main program, link it, and create an EXE
gfortran -o Test Test.f90 MyLib.a
I would like to do the same with iFort, xilink, etc. How do I accomplish this ? PS, I hate make so please don't suggest it.
Thanks,
Brooks Van Horn