home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Fortran.51 / DISK6 / MULMIX.MA$ / MULMIX.bin
Text File  |  1991-04-12  |  835b  |  39 lines

  1. # MULMIX.MAK
  2. # Make file for statically-linked FORTRAN 5.1
  3. # mixed-language example
  4.  
  5. all : mulmix.exe
  6.  
  7.  
  8. # Update the resource if necessary
  9.  
  10. mulmix.res : mulmix.rc mulmix.h
  11.     rc /r mulmix.rc
  12.  
  13.  
  14. # Update the C object file if necessary
  15.  
  16. mulmix.obj : mulmix.c mulmix.h
  17.     cl /c /AL /Gsw /Oas /Zpe /FPc mulmix.c
  18.  
  19.  
  20. # Update the FORTRAN object file if necessary
  21.  
  22. mulf.obj : mulf.for
  23.     fl /c /G2 /FoMULF.OBJ mulf.for
  24.  
  25.  
  26. # Update the C object file if necessary
  27.  
  28. mulc.obj : mulc.c
  29.     cl /c /AL /Gsw /Oas /Zpe /FPc mulc.c
  30.  
  31. # Update the executable file if necessary, and if so,
  32. # add the resource back in.
  33.  
  34. mulmix.exe : mulmix.obj mulf.obj mulc.obj mulmix.def mulmix.res
  35.     link mulmix mulf mulc, mulmix.exe, nul, \
  36.       libw /NOD /NOE llibfewc llibcew noqwin, mulmix.def
  37.     rc mulmix.res mulmix.exe
  38. 
  39.