We are using Silverfrost together with gfortran. Since I could not figure out how to suppress the directory structure from Plato, the idea is to rather use of make files. In doing so the repository has the same structure for both compilers.
Below is the make file for mk32. Since I have OBJ as a macro I would like to avoid the @listfile, i.e. making a file which has the same content as OBJ. Is this possible?
.SUFFIXES: .f90 .obj
OBJ = NRTYPE.obj \ NRUTIL.obj \ NR.obj \ POLIN2.obj \ POLINT.obj \ ZBRAK.obj \ LOCATE.obj \ BRENT.obj \ ZBRENT.obj
T = nr.lib
.f90.obj:
ftn95 $< /check
nr.lib: $(OBJ)
slink -archive:$@ -addobj:@listfile