| 16 |
|
echo "Set the environment variable RAYPATH=.:$ldir" |
| 17 |
|
echo 'For C-shell users, put the following into ~/.cshrc' |
| 18 |
|
echo " setenv RAYPATH .:$ldir" |
| 19 |
< |
echo 'For Bourne shell users, put the following into $HOME/profile' |
| 19 |
> |
echo 'For Bourne shell users, put the following into $HOME/.profile' |
| 20 |
|
echo " RAYPATH=.:$ldir" |
| 21 |
|
echo " export RAYPATH" |
| 22 |
|
echo "" |
| 180 |
|
set mach="-DBSD -DNOSTEREO -Dfreebsd -I/usr/X11R6/include -L/usr/X11R6/lib" |
| 181 |
|
set opt="-O -DSPEED=200" |
| 182 |
|
set compat="erf.o" |
| 183 |
< |
set extras="CC=cc" |
| 183 |
> |
set extras='CC=cc MLIB="-lcompat -lm"' |
| 184 |
|
set arch=IBMPC |
| 185 |
|
breaksw |
| 186 |
|
case 9: # Cygwin |
| 260 |
|
echo "Add $idir to the beginning of your execution path:" |
| 261 |
|
echo 'For C-shell users, put the following into ~/.cshrc' |
| 262 |
|
echo " set path=( $idir "'$path )' |
| 263 |
< |
echo 'For Bourne shell users, put the following into $HOME/profile' |
| 263 |
> |
echo 'For Bourne shell users, put the following into $HOME/.profile' |
| 264 |
|
echo " PATH=$idir"':$PATH' |
| 265 |
|
echo " export PATH" |
| 266 |
|
endif |
| 276 |
|
foreach i ( $* ) |
| 277 |
|
if ( "$i" == clean ) then |
| 278 |
|
echo "Removing library archives..." |
| 279 |
< |
rm -f src/lib/*.[ao] |
| 279 |
> |
rm -f src/lib/*.{a,o,la} |
| 280 |
|
endif |
| 281 |
|
end |
| 282 |
|
echo "Done." |