home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / fermiVogle.tar.Z / fermiVogle.tar / devel / examples / fmakefil.msc < prev    next >
Text File  |  1996-02-07  |  2KB  |  97 lines

  1. #
  2. # Makefile for FORTRAN vogle test programs.
  3. #
  4. F = -FPc
  5. LIB =    ..\src\vogle.lib
  6. FFLAGS = -nologo -Ox -AL -4Nt -c $(F)
  7.  
  8. #
  9. # The -4Nt means don't truncate any names (some vogle names are 
  10. # quite long - more than 6 characters anyway
  11. #
  12. .for.obj:
  13.         fl $(FFLAGS) $*.for
  14.  
  15. .obj.exe:
  16.         link /NOE /EXEPACK /STACK:0x2000 $*,,nul,$(LIB);
  17. #
  18. #  Note: The /STACK bit is only needed if you use lots of "Objects"
  19. #        like fobjvws. (Anyway, it's a bit big)
  20. #
  21.  
  22. ftrivial.obj: ftrivial.for
  23.  
  24. ftrivial.exe: ftrivial.obj $(LIB)
  25.  
  26. fsimple.obj: fsimple.for
  27.  
  28. fsimple.exe: fsimple.obj $(LIB)
  29.  
  30. fshapes.obj: fshapes.for
  31.  
  32. fshapes.exe: fshapes.obj $(LIB)
  33.  
  34. fpoly.obj: fpoly.for
  35.  
  36. fpoly.exe: fpoly.obj $(LIB)
  37.  
  38. flstyles.obj: flstyles.for
  39.  
  40. flstyles.exe: flstyles.obj $(LIB)
  41.  
  42. fviews.obj: fviews.for
  43.  
  44. fviews.exe: fviews.obj $(LIB)
  45.  
  46. fcirctxt.obj: fcirctxt.for
  47.  
  48. fcirctxt.exe: fcirctxt.obj $(LIB)
  49.  
  50. fmoretxt.obj: fmoretxt.for
  51.  
  52. fmoretxt.exe: fmoretxt.obj $(LIB)
  53.  
  54. fjtext.obj: fjtext.for
  55.  
  56. fjtext.exe: fjtext.obj $(LIB)
  57.  
  58. fgetstr.obj: fgetstr.for
  59.  
  60. fgetstr.exe: fgetstr.obj $(LIB)
  61.  
  62. fcurves.obj: fcurves.for
  63.  
  64. fcurves.exe: fcurves.obj $(LIB)
  65.  
  66. fpatches.obj: fpatches.for
  67.  
  68. fpatches.exe: fpatches.obj $(LIB)
  69.  
  70. fballs.obj: fballs.for 
  71.  
  72. fballs.exe: fballs.obj  $(LIB)
  73.  
  74. fobjvws.obj: fobjvws.for
  75.  
  76. fobjvws.exe: fobjvws.obj $(LIB)
  77.  
  78. fworld.obj: fworld.for
  79.  
  80. fworld.exe: fworld.obj $(LIB)
  81.  
  82. floc.obj: floc.for
  83.  
  84. floc.exe: floc.obj $(LIB)
  85.  
  86. fcube.obj: fcube.for
  87.  
  88. fcube.exe: fcube.obj $(LIB)
  89.  
  90. flcube.obj: flcube.for
  91.  
  92. flcube.exe: flcube.obj $(LIB)
  93.  
  94. ftetra.obj: ftetra.for
  95.  
  96. ftetra.exe: ftetra.obj $(LIB)
  97.