Topic: module order in makefile
I used SF in the past to build a "traditional" fortran project with main program an d a bunch of program units being just collections of subroutines and functions. I've now rewritten the code, putting all the subroutines in modules. I just tried SF again to build this module-based version and the automatically-generated makefile is not paying attention to the dependencies, even though the Help system says it should take those dependencies into account. The compile commands are just in alphabetical order. It tries to compile the main program first and immediately bombs out saying it can't the first module on which it depends. What do I need to do to get a correct makefile?
Eric