home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / util / edit / jade / configure < prev    next >
Text File  |  1994-05-24  |  354b  |  18 lines

  1. #!/bin/sh
  2. # Configure -- makes the src/config.h symbolic link.
  3.  
  4. if [ $# -ne 1 ]; then
  5.   echo "Usage: $0 CONFIG-NAME"
  6.   echo "       $0 -a"
  7. else
  8.   if [ $1 = -a ]; then
  9.     sys=`uname -s`
  10.   else
  11.     sys=$1
  12.   fi
  13.   echo "rm -f src/config.h"
  14.   rm -f src/config.h
  15.   echo "ln -s configs/config.h.$sys src/config.h"
  16.   ln -s configs/config.h.$sys src/config.h
  17. fi
  18.