home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / vopl.tar.Z / vopl.tar / vopl / fbuild.bat < prev    next >
DOS Batch File  |  1989-10-05  |  348b  |  20 lines

  1. echo off
  2. if "%1" == "" goto err
  3. echo Making FORTRAN interfaces
  4. cd src\msfort
  5. make F=%1 makefile.msc
  6. cd ..
  7. echo Making VOPL library
  8. make F=%1 fmakefil.msc
  9. cd ..\examples
  10. echo Making VOPL examples
  11. command /c f_2_for
  12. make F=%1 fmakefil.msc
  13. cd ..\gpp
  14. echo Making GPP program
  15. make F=%1 makefile.msc
  16. goto end
  17. :err
  18. echo "usage: fbuild -FPc | -FPi87"
  19. :end
  20.