home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v1.zip / DDKX86 / setup / COPYASM6.CMD next >
OS/2 REXX Batch file  |  1995-04-10  |  1KB  |  63 lines

  1. /*  */
  2.  
  3. parse upper arg masm60 basename .
  4.  
  5.  
  6. parse source . . command .
  7.  
  8. command = FILESPEC( 'Name', command )
  9.  
  10. i = POS( '.', command )
  11.  
  12.  
  13. if i <> 0 then
  14.  
  15.    command = substr( command, 1, i - 1 )
  16.  
  17.  
  18. if masm60 = '' then
  19.  
  20.    do
  21.  
  22.       say
  23.       say 'Usage:' command 'MASM60PATH DDKPATH'
  24.       say
  25.       say '        Where:'
  26.       say '               MASM60PATH is the path to the Microsoft MASM 6.0 directory.'
  27.       say '               e.g. C:\MASM'
  28.       say
  29.       say '               DDKPATH is the path where the DDK has been installed.    '
  30.       say '               e.g. D:\DDKx86'
  31.  
  32.       exit
  33.  
  34.    end
  35.  
  36.  
  37. exes.1     = 'ML.EXE'
  38. exes.2     = 'ML.ERR'
  39.  
  40. exes.0     = 2
  41.  
  42. 'MD' basename'\MASM60\BINP'
  43.  
  44. do i = 1 to exes.0
  45.  
  46.    'COPY' masm60'\BINP\'exes.i basename'\MASM60\BINP /V'
  47.  
  48.    if rc <> 0 then
  49.  
  50.       do
  51.          say
  52.          say 'Unable to copy' masm60'\BINP\'exes.i 'to' basename'\MASM60\BINP'
  53.          say 'Executable file bypassed.'
  54.          say
  55.       end
  56.  
  57. end
  58.  
  59. 'MD' basename'\MASM60\INCLUDE'
  60. 'COPY' masm60'\INCLUDE\CMACROS.INC' basename'\MASM60\INCLUDE /V'
  61.  
  62. exit
  63.