home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / FORTRAN / DISK6 / MULMIX_D.MA$ / MULMIX_D.bin
Text File  |  1991-04-05  |  1KB  |  43 lines

  1. # MULMIX_D.MAK
  2. # Make file for FORTRAN 5.1 mixed-language example using .DLL
  3.  
  4. all : mulmix_d.exe mullib.dll
  5.  
  6.  
  7. # Update the resource if necessary
  8.  
  9. mulmix.res : mulmix.rc mulmix.h
  10.     rc /r mulmix.rc
  11.  
  12.  
  13. # Update the C object file if necessary
  14.  
  15. mulmix.obj : mulmix.c mulmix.h
  16.     cl /c /AL /Gsw /Oas /Zpe mulmix.c
  17.  
  18.  
  19. # Update the FORTRAN object file if necessary
  20.  
  21. mulf_d.obj : mulf.for
  22.     fl /c /Gw /Aw /G2 /FoMULF_D.OBJ mulf.for
  23.  
  24.  
  25. # Update the C object file if necessary
  26.  
  27. mulc_d.obj: mulc.c
  28.     cl /c /AL /Gsw /Aw /FoMULC_D.OBJ mulc.c
  29.  
  30. # Update the .DLL if necessary
  31. mullib.dll : mulf_d.obj mulc_d.obj
  32.     link mulf_d.obj mulc_d.obj , mullib.dll, nul, \
  33.         /NOD /NOE ldllfewc.lib ldllcew.lib libw.lib , mullib.def
  34.     rc mullib.dll
  35.  
  36.  
  37. # Update the executable file if necessary, and if so,
  38. # add the resource back in.
  39.  
  40. mulmix_d.exe : mulmix.obj mulmix_d.def mulmix.res
  41.     link mulmix, mulmix_d.exe, nul, libw /NOD llibcew, mulmix_d.def
  42.     rc mulmix.res mulmix_d.exe
  43.