home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixtools / util / install next >
Encoding:
Text File  |  1992-07-21  |  1.2 KB  |  69 lines

  1. | Install: Install utility routines
  2.  
  3. | Temporarily catch all non-0 return codes as errors
  4.  
  5. Seteval Install$Tmp <Sys$RCLimit>
  6. Seteval Sys$RCLimit 0
  7.  
  8. Echo Compiling the sources...
  9. cc -c C.Alloca
  10. cc -c C.Bag
  11. cc -c C.Bitset
  12. cc -c C.Chdir
  13. cc -c C.Deque
  14. cc -c C.Dir
  15. cc -c C.Dirscan
  16. cc -c C.Efopen
  17. cc -c C.Emalloc
  18. cc -c C.Fatal
  19. cc -c C.Filelen
  20. cc -c C.Filetime
  21. cc -c C.Filetype
  22. cc -c C.Getopt
  23. cc -c C.Getwd
  24. cc -c C.Map
  25. cc -c C.Message
  26. cc -c C.Mktemp
  27. cc -c C.Popen
  28. cc -c C.Queue
  29. cc -c C.Ring
  30. cc -c C.Set
  31. cc -c C.Stack
  32. cc -c C.Stat
  33. cc -c C.Strcchr
  34. cc -c C.Strdup
  35. cc -c C.Strlcmp
  36. cc -c C.Strlower
  37. cc -c C.Strndup
  38. cc -c C.Strnlcmp
  39. cc -c C.Strnpcpy
  40. cc -c C.Strpcpy
  41. cc -c C.Strupper
  42. cc -c C.Time
  43. cc -c C.Touch
  44. cc -c Regex.C.Regex
  45.  
  46. Echo Making the library...
  47. LibFile Utils -c -f O.*
  48.  
  49. Echo Indexing the library...
  50. ObjLib Utils -c
  51.  
  52. Echo Copying the library and headers...
  53. Copy H.* <C$LibRoot>.H.* FQ~C~V
  54. Copy Sys.H.* <C$LibRoot>.Sys.H.* FQ~C~V
  55. Copy Regex.H.Regex <C$LibRoot>.H.Regex FQ~C~V
  56. Copy Utils adfs::HardDisc4.$.Lib.Utils FQ~C~V
  57.  
  58. Echo Tidying up...
  59. Wipe O.* F~C~V
  60. Remove Utils
  61.  
  62. Echo Finished...
  63.  
  64. | Restore the system return code limit
  65.  
  66. Seteval Sys$RCLimit <Install$Tmp>
  67. Unset   Install$Tmp
  68.  
  69.