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

  1. echo off
  2. if "%1" == "" goto err
  3. cd src
  4. echo Making VOPL library
  5. make F=%1 makefile.msc
  6. cd ..\examples
  7. echo Making C examples
  8. make F=%1 makefile.msc
  9. cd ..\gpp
  10. echo Making the GPP program
  11. make F=%1 makefile.msc
  12. goto end
  13. :err
  14. echo "usage: build -FPc | -FPi87"
  15. :end
  16.