Bell 32V release
[unix-history] / usr / src / cmd / f77 / drivedefs
CommitLineData
0d57d6f5
TL
1/*
2 Driver for Fortran 77 Compiler
3 For the VAX, Running on the VAX,
4 Using the Ritchie C compiler's second pass
5*/
6
7#if HERE!=VAX || TARGET!=VAX || FAMILY!=SCJ
8 Wrong Definitions File!
9#endif
10
11#define PASS1NAME "/usr/lib/f77pass1"
12#define PASS2NAME "/lib/f1"
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
22static char *liblist [ ] =
23 {
24 "-lF77",
25 "-lI77",
26 "-lm",
27 "-lc",
28 "-l",
29 NULL };