home *** CD-ROM | disk | FTP | other *** search
/ The Best of Mecomp Multimedia 2 / MECOMP-CD-II.iso / amiga / programmieren / c / amivogl_mdev / cpfd.bat < prev    next >
Encoding:
DOS Batch File  |  1991-06-05  |  1.0 KB  |  43 lines

  1. echo off
  2.  
  3. rem
  4.  
  5. rem  Copys vogl directories onto floppy disk
  6.  
  7. rem
  8.  
  9. rem  Usage: cd to vogl directory, then cpfd A:
  10.  
  11. rem
  12.  
  13. echo MAKING DIRECTORIES
  14.  
  15. md %1\vogl
  16.  
  17. md %1\vogl\src
  18.  
  19. md %1\vogl\src\msfort
  20.  
  21. md %1\vogl\src\sunfort
  22.  
  23. md %1\vogl\drivers
  24.  
  25. md %1\vogl\drivers\ibmpc
  26.  
  27. md %1\vogl\examples
  28.  
  29. md %1\vogl\hershey
  30.  
  31. md %1\vogl\hershey\fonts
  32.  
  33. md %1\vogl\hershey\docs
  34.  
  35. md %1\vogl\hershey\src
  36.  
  37. md %1\vogl\hershey\data
  38.  
  39. md %1\vogl\docs
  40.  
  41. echo "DONE MAKING DIRECTORIES"
  42.  
  43. rem
  44.  
  45. rem  Do the copying
  46.  
  47. rem
  48.  
  49. echo BEGIN COPYING
  50.  
  51. copy *.* %1\vogl
  52.  
  53. copy src\*.* %1\vogl\src
  54.  
  55. copy src\msfort\*.* %1\vogl\src\msfort
  56.  
  57. copy src\sunfort\*.* %1\vogl\src\sunfort
  58.  
  59. rem
  60.  
  61. copy drivers\*.* %1\vogl\drivers
  62.  
  63. copy drivers\ibmpc\*.* %1\vogl\drivers\ibmpc
  64.  
  65. rem
  66.  
  67. copy examples\*.* %1\vogl\examples
  68.  
  69. rem
  70.  
  71. copy hershey\*.* %1\vogl\hershey
  72.  
  73. copy hershey\src\*.* %1\vogl\hershey\src
  74.  
  75. copy hershey\docs\*.* %1\vogl\hershey\docs
  76.  
  77. copy hershey\data\*.* %1\vogl\hershey\data
  78.  
  79. copy hershey\fonts\*.* %1\vogl\hershey\fonts
  80.  
  81. copy docs\*.* %1\vogl\docs
  82.  
  83. echo FINISHED COPYING
  84.  
  85.