home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Graphics / Graphics.zip / icpl100.zip / configure.bat next >
DOS Batch File  |  2001-05-30  |  614b  |  31 lines

  1. @rem  Icon Plus MS Windows Configuration Script
  2. @echo off
  3.  
  4. if "%1" == "--help" goto help
  5. if "%1" == "--icc"  goto configure_icc
  6. if "%1" == "--bcc"  goto configure_bcc
  7.   
  8. :help
  9.  
  10.   echo Usage:   configure [options]
  11.   echo Options: --help print this help.
  12.   echo          --icc  configure to IBM VisualAge C++
  13.   echo          --bcc  configure to Borland C++
  14.   goto end
  15.  
  16. :configure_icc
  17.  
  18.   echo Configuring...
  19.   copy Source\makefile_icc Source\makefile
  20.   echo Done.
  21.   goto end
  22.  
  23. :configure_bcc
  24.  
  25.   echo Configuring...
  26.   copy Source\makefile_bcc Source\makefile
  27.   echo Done.
  28.   goto end
  29.  
  30. :end
  31.