diff options
-rw-r--r-- | config/mh-aix | 1 | ||||
-rw-r--r-- | config/mh-irix4 | 8 |
2 files changed, 7 insertions, 2 deletions
diff --git a/config/mh-aix b/config/mh-aix new file mode 100644 index 0000000..ff85fa0 --- /dev/null +++ b/config/mh-aix @@ -0,0 +1 @@ +INSTALL = cp diff --git a/config/mh-irix4 b/config/mh-irix4 index a11517e..5864b27 100644 --- a/config/mh-irix4 +++ b/config/mh-irix4 @@ -1,5 +1,9 @@ # Makefile changes for SGI's running IRIX-4.x. -# Tell compiler to use K&R C. We can't compile under the SGI Ansi environment. -CC = cc -cckr +# Tell compiler to use K&R C. We can't compile under the SGI Ansi +# environment. Also bump switch table size so that cp-parse will +# compile. + +CC = cc -cckr -Wf,-XNg1500 SYSV = -DSYSV RANLIB = echo >/dev/null +INSTALL = cp |