summaryrefslogtreecommitdiff
path: root/default.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1992-06-03 01:13:51 +0000
committerRoland McGrath <roland@redhat.com>1992-06-03 01:13:51 +0000
commit85bab9477baab61c7d4b7eaaa111460967904cb4 (patch)
treec3ece22bf2c010e2e8a0b7e1754c38c1e29aee53 /default.c
parent835c266436f1eb7e3f25f2477e6faeaac13a4390 (diff)
downloadgunmake-85bab9477baab61c7d4b7eaaa111460967904cb4.tar.gz
Formerly default.c.~13~
Diffstat (limited to 'default.c')
-rw-r--r--default.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/default.c b/default.c
index 12d82ea..e7fb37e 100644
--- a/default.c
+++ b/default.c
@@ -189,6 +189,13 @@ static char *default_variables[] =
"C++", "g++",
"CO", "co",
"CPP", "$(CC) -E",
+#ifdef CRAY
+ "CF77PPFLAGS", "-P",
+ "CF77PP", "/lib/cpp",
+ "CFT", "cft77",
+ "CF", "cf77",
+ "FC", "$(CF)",
+#else /* Not CRAY. */
#ifdef _IBMR2
"FC", "xlf",
#else
@@ -198,6 +205,7 @@ static char *default_variables[] =
However, there is no way to make implicit rules use them and FC. */
"F77", "$(FC)",
"F77FLAGS", "$(FFLAGS)",
+#endif /* Cray. */
#if defined (USG) || defined (ultrix)
"GET", "get",
#else
@@ -210,8 +218,13 @@ static char *default_variables[] =
#ifdef pyr
"PC", "pascal",
#else
+#ifdef CRAY
+ "PC", "PASCAL",
+ "SEGLDR", "segldr",
+#else
"PC", "pc",
-#endif
+#endif /* CRAY. */
+#endif /* pyr. */
"YACC", "yacc", /* Or "bison -y" */
"MAKEINFO", "makeinfo",
"TEX", "tex",