file reorg, pathnames.h, paths.h
[unix-history] / usr / src / usr.bin / f77 / f77.tahoe / pathnames.h
CommitLineData
49f3f028
KB
1/*
2 * drivedefs.h
3 *
4 * Definitions for Fortran 77 Compiler driver
5 * For the VAX, running on the VAX
6 *
7 * UCSD Chemistry modification history:
8 *
9 * $Log: drivedefs.h,v $
10 * Revision 1.4 85/02/12 19:25:05 donn
11 * Added 'CATNAME' to define the name of the concatenation command.
12 *
13 * Revision 1.3 85/01/14 06:42:01 donn
14 * Changed to use c2 as the peephole optimizer.
15 *
16 * Revision 1.2 84/04/11 19:02:16 donn
17 * Added Dave Wasley's fix to load the Unix library (libU77.a) first.
18 *
19 */
20
21#if HERE!=TAHOE || TARGET!=TAHOE|| FAMILY!=PCC
22 Wrong Definitions File!
23#endif
24
dc0e9d50
KB
25#define PASS1NAME "/usr/libexec/f77pass1"
26#define PASS2NAME "/usr/libexec/f1"
49f3f028 27#ifdef INLINE
dc0e9d50
KB
28#define PASS2INAME "/usr/libexec/if1"
29#endif
30#define PASS2OPT "/usr/libexec/c2"
31#define ASMNAME "/usr/bin/as"
32#define LDNAME "/usr/bin/ld"
33#define _PATH_UBIN "/usr/bin"
49f3f028 34#define CATNAME "/bin/cat"
dc0e9d50
KB
35#define FOOTNAME "/usr/lib/crt0.o"
36#define PROFFOOT "/usr/lib/mcrt0.o"
49f3f028 37#define GPRFFOOT "/usr/lib/gcrt0.o"
dc0e9d50 38#define TEMPPREF "fort"
49f3f028
KB
39
40static char *liblist [ ] =
41 { "/usr/lib/libU77.a",
42 "/usr/lib/libF77.a",
43 "/usr/lib/libI77.a",
44 "/usr/lib/libm.a",
dc0e9d50 45 "/usr/lib/libc.a",NULL };
49f3f028
KB
46static char *p_liblist [ ] =
47 { "/usr/lib/libU77_p.a",
48 "/usr/lib/libF77_p.a",
49 "/usr/lib/libI77_p.a",
50 "/usr/lib/libF77_p.a",
51 "/usr/lib/libm_p.a",
52 "/usr/lib/libc_p.a",NULL };
dc0e9d50
KB
53
54#include <paths.h>
55
56#define _PATH_BSHELL "/bin/sh"
57#define _PATH_CPP "/usr/bin/cpp"