f2c.txt -- Fortran-to-C for Minix posted 2003-07-26 Ported to Minix by Harald Arnesen The complete archive is minix1.hampshire.edu/pub/contrib/f2c.tar.Z. As bin, unpack the archive in /usr/local/src to create directory f2c/ and then cd there. There will be three subdirectories, src/, libf2c/, and fc/. Type "make" in src/ to compile translator Install src/f2c in /usr/local/bin Install src/f2c.h in /usr/local/include Install src/f2c.1 in /usr/local/man/man1 Type "make" in libf2c/ to compile the runtime library Install libf2c/libf2c.a in /usr/local/lib The fc directory contains a shell script, fc, to be used as a front end for the compiler, as well as source code for getopt, which will process command line arguments for fc or other shell scripts. Type "make" in fc/ to compile getopt. Install fc/fc in /usr/local/bin Install fc/getopt in /usr/local/bin Install fc/fc.1 in /usr/local/man/man1 Install fc/getopt.1 in /usr/local/man/man1 A simple Fortran "hello, world" program is provided as hello.f.