I am using ftn77 and ftn95 2006 version. This is my makefile constructed as defined in the user guide:
.SUFFIXES: .for .obj .for.obj: ftn77 $< /check prog.exe: prog.obj sub.obj SLINK prog.lnk
and these are simple programs:
Prog.FOR:
winapp 500000,500000 options(intL) program prog include <windows.ins> INCLUDE <EXCEPTN.INS> call sub1 stop end
SUB.FOR: subroutine sub1 print *,'c1c1' print *,'d1d1' return end
I intend to use MK32 but this is the answer and PROG.exe do not uptodate with the new text I included for the print in sub.for and recompile it but nothing happens: the command is: MK32 -DD
The output is:
[Salford MK/Win32 Version 3.89, Copyright (c) Silverfrost Ltd. 1996-2006] .SUFFIXES: .for .obj .for.obj: ftn77 $< /check prog.exe: prog.obj sub.obj SLINK prog.lnk .SUFFIXES: .for .obj .for.obj: ftn77 $< /check prog.exe: prog.obj sub.obj SLINK prog.lnk
Target is up to date.
Please let me know where is my mistake on using MK32