mkmkfiles.sgi
上传用户:xk288cn
上传日期:2007-05-28
资源大小:4876k
文件大小:0k
源码类别:

GIS编程

开发平台:

Visual C++

  1. #!/bin/csh -f
  2. echo "Setting up use of SGI Makefiles"
  3. echo ""
  4. echo "NOTE: If you have a Fortran compiler and IRIX 5.3 or later, please see"
  5. echo "the instructions in README.fortran for building the GLUT Fortran"
  6. echo "API and sample programs.  Fortran code is not built by default."
  7. echo ""
  8. foreach i ( `find . -name Makefile.sgi -print` )
  9.    echo "Linking $i to $i:r"
  10.    rm -f $i:r
  11.    ln -s Makefile.sgi $i:r
  12. end