| 50 |
|
echo -n "Where do you want the executables [/usr/local/bin]? " |
| 51 |
|
set idir=$< |
| 52 |
|
(echo $idir) >/dev/null |
| 53 |
< |
if ( $status ) goto again1 |
| 53 |
> |
if ( $status ) then |
| 54 |
> |
goto again1 |
| 55 |
> |
endif |
| 56 |
|
set idir=$idir |
| 57 |
|
if ( "$idir" == "" ) then |
| 58 |
|
set idir=/usr/local/bin |
| 75 |
|
endif |
| 76 |
|
endif |
| 77 |
|
set rmake=$idir/rmake |
| 78 |
< |
if ( "`ls -tL $rmake $0 |& head -1`" == $rmake ) goto gotrmake |
| 78 |
> |
if ( "`ls -tL $rmake $0 |& head -1`" == $rmake ) then |
| 79 |
> |
goto gotrmake |
| 80 |
> |
endif |
| 81 |
|
set newrmake |
| 82 |
|
goto skiplicense |
| 83 |
|
cat << _EOF_ |
| 143 |
|
switch ("$arch") |
| 144 |
|
case 1: # SPARC Station |
| 145 |
|
set arch=sun |
| 146 |
< |
if ( `uname -r` =~ 4.* ) then |
| 147 |
< |
set mach="-fsingle -DBSD /usr/lib/libm.il -I/usr/openwin/include -L/usr/openwin/lib -DNOSTEREO" |
| 148 |
< |
set opt="-O -pipe -DSPEED=12" |
| 145 |
< |
set special="sun" |
| 146 |
< |
set compat="bmalloc.o strcmp.o" |
| 147 |
< |
else |
| 148 |
< |
set mach="-I/usr/openwin/include -L/usr/openwin/lib -DNOSTEREO" |
| 149 |
< |
set opt="-O -DSPEED=80" |
| 150 |
< |
set special="ogl" |
| 151 |
< |
set compat="bmalloc.o strcmp.o getpagesize.o" |
| 152 |
< |
endif |
| 146 |
> |
set mach="-I/usr/openwin/include -L/usr/openwin/lib -DNOSTEREO" |
| 147 |
> |
set opt="-O -DSPEED=80" |
| 148 |
> |
set compat="bmalloc.o strcmp.o getpagesize.o" |
| 149 |
|
breaksw |
| 150 |
|
case 2: # HP workstation |
| 151 |
|
set mach="" |