/*
  Driver for Fortran 77 Compiler
  For the PDP11, Running on the PDP11, 
  Using the Ritchie C compiler's second pass
*/

#if HERE!=PDP11 || TARGET!=PDP11 || FAMILY!=DMR
	Wrong Definitions File!
#endif

#ifndef OVDRIVER
#define PASS1NAME	"/usr/lib/f77pass1"
#define PASS2NAME	"/lib/c1"
#define PASS2OPT	"/lib/c2"
#define NOFLPASS2	"/lib/c1"
#define ASMNAME		"/bin/as"
#define LDNAME		"/bin/ld"
#define FOOTNAME	"/lib/crt0.o"
#define PROFFOOT	"/lib/mcrt0.o"
#define NOFLFOOT	"/usr/lib/fcrt0.o"
#define CC		"/usr/ucb/bin/cc"
#define NOFLPROFFOOT	"/usr/lib/fmcrt0.o"

static char *liblist [ ] =
	{
	"-lF77",
	"-lI77",
	"-lm",
	"-lc",
	NULL };
#else
#define PASS1NAME	"/usr/lib/f77pass1"
#define PASS2NAME	"/usr/new/lib/ovc1"
#define PASS2OPT	"/lib/c2"
#define NOFLPASS2	"/usr/new/lib/ovc1"
#define ASMNAME		"/usr/ucb/bin/ovas"
#define LDNAME		"/usr/ucb/bin/ovld"
#define FOOTNAME	"/lib/crt0.o"
#define PROFFOOT	"/lib/mcrt0.o"
#define NOFLFOOT	"/usr/lib/fcrt0.o"
#define NOFLPROFFOOT	"/usr/lib/fmcrt0.o"
#define CC		"/usr/ucb/bin/cc -V"

static char *liblist [ ] =
	{
	"-lovF77",
	"-lovI77",
	"-lovm",
	"-lovc",
	NULL };
#endif
