home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # installs rayshade.4.0.6 patches for raytracing fractals
- # philippe@cs.kuleuven.ac.be - 12 oct 1993
-
- cd libshade
- files="lex.l shade.c viewing.c viewing.h yacc.y"
- for file in $files; do patch $file $file.diff; done
-
- cd ../libray/libcommon
- files="ray.h transform.c transform.h vecmath.c vector.h"
- for file in $files; do patch $file $file.diff; done
-
- cd ../libobj
- files="Makefile.SH bounds.c bounds.h"
- for file in $files; do patch $file $file.diff; done
-
- cd ../..
- echo "The patches for ray-tracing fractals with rayshade.4.0.6 have been applied"
- echo "and the new files added. If you already ran the Configure script, run"
- echo "Reconfigure, if you didn't, run Configure now."
-
-