home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V7 / usr / src / cmd / f77 / drivedefs < prev    next >
Encoding:
Text File  |  1979-01-22  |  583 b   |  29 lines

  1. /*
  2.   Driver for Fortran 77 Compiler
  3.   For the PDP11, Running on the PDP11, 
  4.   Using the Ritchie C compiler's second pass
  5. */
  6.  
  7. #if HERE!=PDP11 || TARGET!=PDP11 || FAMILY!=DMR
  8.     Wrong Definitions File!
  9. #endif
  10.  
  11. #define PASS1NAME    "/lib/f77pass1"
  12. #define PASS2NAME    "/lib/c1"
  13. #define PASS2OPT    "/lib/c2"
  14. #define NOFLPASS2    "/lib/fc1"
  15. #define ASMNAME    "/bin/as"
  16. #define LDNAME    "/bin/ld"
  17. #define FOOTNAME    "/lib/crt0.o"
  18. #define PROFFOOT    "/lib/mcrt0.o"
  19. #define NOFLFOOT    "/lib/fcrt0.o"
  20. #define NOFLPROFFOOT    "/lib/fmcrt0.o"
  21.  
  22. static char *liblist [ ] =
  23.     {
  24.     "-lF77",
  25.     "-lI77",
  26.     "-lm",
  27.     "-lc",
  28.     NULL };
  29.