home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / libg++ / makegpp < prev   
Encoding:
Text File  |  1993-12-12  |  1.0 KB  |  61 lines

  1. ; Script that builds libleda.a
  2. ; we do it in memory for security and speed reasons
  3.  
  4. ; Thu Sep 23 18:16:26 1993 GM: comments added
  5. ; Thu Oct  7 14:14:43 1993 GM: rewritten for LEDA
  6. ; Thu Oct  7 14:29:39 1993 GM: rewritten for gpp
  7. ; Mon Oct 18 17:47:25 1993 GM: added iostreams/stdio
  8. ; Tue Oct 26 20:19:02 1993 GM: added normal/baserel stuff
  9.  
  10.     ; doesn't matter if not there
  11.  
  12.     delete ram:libgpp.a
  13.     delete ram:libbgpp.a
  14.  
  15.  
  16.     cd iostream/normal/
  17.     dmake gpplib
  18.     cd //
  19.  
  20.     cd iostream/baserel/
  21.     dmake gpplib
  22.     cd //
  23.  
  24.     cd iostream/normal/stdio/
  25.     dmake gpplib
  26.     cd ///
  27.  
  28.     cd iostream/baserel/stdio/
  29.     dmake gpplib
  30.     cd ///
  31.  
  32.     cd src/normal/
  33.     dmake gpplib
  34.     cd //
  35.  
  36.     cd src/baserel/
  37.     dmake gpplib
  38.     cd //
  39.  
  40.     cd ger_add/normal/
  41.     dmake gpplib
  42.     cd //
  43.  
  44.     cd ger_add/baserel/
  45.     dmake gpplib
  46.     cd //
  47.  
  48.     ; make access faster
  49.  
  50.     usr:bin/ranlib ram:libgpp.a
  51.     usr:bin/ranlib ram:libbgpp.a
  52.  
  53.     ; if sd0: (resident ram disk) used
  54. ;    copy ram:libgpp.a sd0:lib/libgpp.a
  55.  
  56.  
  57.     ; copy lib in our libs-directory
  58.  
  59.     copy ram:libgpp.a g:lib/libgpp.a
  60.     copy ram:libbgpp.a g:blib/libgpp.a
  61.