home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / Rhapsody / UNIX / Programming / f2c-1996.02.05-PI / README < prev   
Encoding:
Text File  |  1998-04-23  |  983 b   |  26 lines

  1.  
  2. This is the f2c binary and libf2c library compiled for Rhapsody. Someone
  3. asked me for this, so here it is in initial glory. The functionality is
  4. for converting Fortran to C, especially usefull for g77 users who don't 
  5. have g77 yet on Rhapsody.
  6.  
  7. a quick howto on f2c and libf2c:
  8.  
  9. enter the src directory and type "make" there to compile f2c.
  10. For libf2c, you must enter in turn libF77 and libI77 directories, typing "make"
  11. there to generate those two libraries. To create libf2c, enter these lines:
  12.  
  13. ar ruv libf2c.a libF77/*.o libI77/*.o
  14. ranlib libf2c.a
  15.  
  16. Do this from this current directory. For most purposes, the end user/developer
  17. would use "f2c" and "libf2c.a", both of which should be put in /usr/local 
  18. respectively in "bin" and in "lib". 
  19.  
  20. These were compiled for others to use, but since I neither know nor use
  21. Fortran, these are completely untested by myself. I presume that if nothing 
  22. else, this is a good starting point.
  23.  
  24.                     - Joe Little
  25.                       jlittle@cis.stanford.edu
  26.