home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / c / spl34100.lha / suplib / Install < prev    next >
Text File  |  1992-04-14  |  1KB  |  34 lines

  1. ; This scripts installs the necessary files to your SAS C environment.
  2. ; Make sure you have assigned SL:, LIB: and INCLUDE: correctly before
  3. ; executing this script.
  4. IF NOT EXISTS SL:
  5.   Echo "You need to assign SL: first. CD to SupLib/Scripts, and"
  6.   Echo "execute AssignSL, and re-execute this script."
  7.   quit
  8. ENDIF
  9.  
  10. IF NOT EXISTS INCLUDE:
  11.   Echo "You need to assign INCLUDE: and LIB: to your SAS C environment."
  12.   Echo "Do this, and re-execute this script."
  13.   quit
  14. ENDIF
  15.  
  16. IF NOT EXISTS LIB:
  17.   Echo "You need to assign INCLUDE: and LIB: to your SAS C environment."
  18.   Echo "Do this, and re-execute this script."
  19.   quit
  20. ENDIF
  21.  
  22. Echo "Copying SL:Lib/support.lib to LIB: ..."
  23. Copy SL:Lib/support.lib LIB: CLONE
  24. IF NOT EXISTS INCLUDE:support
  25.   Echo "Creating INCLUDE:support directory ..."
  26.   MakeDir INCLUDE:support
  27. ENDIF
  28. Echo "Copying SL:Include/* to INCLUDE:support/ ..."
  29. Copy SL:Include/* INCLUDE:support/
  30.  
  31. Echo "That's it! You're now ready to start using the support.lib"
  32. Echo "See the SL:Sources/Test/*.c sources for examples!!"
  33. Echo "Have fun..."
  34.