home *** CD-ROM | disk | FTP | other *** search
/ ANews 2 / AnewsCD2.iso / Materiels / AteoConcepts / DOC_DEV / AtéoBus.dev / InstallDeveloperPackage < prev    next >
Text File  |  1999-10-13  |  950b  |  41 lines

  1. ;  Install scrit for the AtéoBus developer package
  2.  
  3. echo  "AtéoBus develloper package installation"
  4. echo  "Version 3.0 (07.09.99), to use with ateobus.library V3.0+"
  5. echo  "This script will not install the ateobus.library!!!"
  6.  
  7. IF EXISTS "include:"
  8.    IF NOT EXISTS "include:hardware"
  9.       echo "Creation of include:hardware/"
  10.       makedir include:hardware
  11.    ENDIF
  12.  
  13.    copy ateobus.h include:hardware/
  14.    copy ateobus.i include:hardware/
  15.  
  16.    IF NOT EXISTS "include:lvo"
  17.       echo "Creation of include:lvo/"
  18.       makedir include:lvo
  19.    ENDIF
  20.  
  21.    copy ateobus_lvo.i   include:lvo/
  22.  
  23.    IF NOT EXISTS "include:pragmas"
  24.       echo "Creation of include:pragmas/"
  25.       makedir include:pragmas
  26.    ENDIF
  27.  
  28.    copy ateobus_pragmas.h  include:pragmas/
  29.  
  30.    IF NOT EXISTS "include:clib"
  31.       echo "Creation of include:clib/"
  32.       makedir include:clib
  33.    ENDIF
  34.  
  35.    copy ateobus_protos.h   include:clib/
  36.  
  37. ELSE
  38.    echo "Include: path does not exists!!"
  39.  
  40. ENDIF
  41.