home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / fortran / mslang / prefor / scrunch_ < prev    next >
Text File  |  1993-10-19  |  650b  |  23 lines

  1. #
  2. #  Make file for form files
  3. #
  4.  
  5. # ---- Compiler & Linker options ----
  6. linkopts=  libf.lib libc.lib kernel32.lib ntdll.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib console.lib 
  7.  
  8. # ---- Actual build dependencies ----
  9.  
  10. ALL: scrunch_.exe
  11.  
  12. scrunch_.obj: scrunch_.for
  13.     fl32 /c /G3 scrunch_.for
  14.  
  15. form32.obj: form32.for
  16.     fl32 /c /G3 form32.for
  17.  
  18. movete32.obj: movete32.for
  19.     fl32 /c /G3 movete32.for
  20.  
  21. scrunch_.exe: scrunch_.obj form32.obj movete32.obj
  22.     link $(linkopts)  /OUT:scrunch_.exe  /base:0x00010000 /stack:32768,4096 /entry:WinMainCRTStartup /debug:none /subsystem:windows scrunch_.obj form32.obj movete32.obj 
  23.