home *** CD-ROM | disk | FTP | other *** search
/ Chestnut's Multimedia Mania / MM_MANIA.ISO / graphics / povsrc20 / putbc.bat < prev    next >
DOS Batch File  |  1993-02-22  |  533b  |  22 lines

  1. @echo off
  2. rem
  3. rem
  4. if not "%1" == "" goto NotEmpty
  5. echo This batch file copies all files for compiling POV-Ray with Borland C++
  6. echo to a working directory you specify.
  7. echo For example: "PUTBC C:\POVWORK" copies files to the C:\POVWORK directory.
  8. goto Done
  9. :NotEmpty
  10. if not exist %1\nul echo Directory %1 doesn't exist!
  11. if not exist %1\nul goto Done
  12. rem
  13. rem
  14. echo on
  15. copy ibmbc*.* %1
  16. copy ..\ibm.c %1
  17. copy ..\ibmconf.h %1\config.h
  18. copy ..\tiga\*.* %1
  19. copy ..\..\..\source\*.c %1
  20. copy ..\..\..\source\*.h %1
  21. :done
  22.