I'm very very new to Fortran and the whole Intel compiler thing (I'm using the Windows-based Intel compiler with IMSL library w/o Visual Studio integration, therefore command line only).
The problem should be extremely simple: I have a Fortran program that I needed to compile that's stored as four different source code parts. The main program (and some subroutines) are stored in the code file named central.for, and there are also three files, let's call them s1.for, s2.for and s3.for, each of which contains only one subroutine (lets call them sub1-sub3) and no main program. The main program calls the subroutines stored in s1-s3 as well as in central.for.
The question is how should I compile it:
When I try to compile the central.for, it gives error LNK2019: unresolved external symbol _SUB1 referenced in function _MAIN__. Similarly it gives the same message for SUB2 and SUB3.
When I try to compile s1.for-s3.for, it gives error LNK2019: unresolved external symbol _MAIN__ referenced in function _main
It seems obvious that I need to link them somehow. However, being a total newbie, I have no idea how. Any help is greatly appreciated!