From the documentation I see this line;
The pre-processor can only be used for conditional compilation. Macro substitution is not supported.
Which I guess rules out overriding parameters from the command line.
I've tried
ftn95 file.f90 /VPARAM maxabcval 8192
and in Fortran;
PARAMETER (maxabc=maxabcval)
But this yields a compilation error.
Is there another way to pass in values for compilation time or is this not possible?
Thanks in advance
Ryan