home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume13 / okbridge / part02 / MakeDistrib < prev   
Text File  |  1992-01-13  |  577b  |  16 lines

  1. #/bin/csh -f
  2. #
  3. # This shell script creates the compress okbridge tar file which
  4. # is distributed.  Unfortunately, it seems that the "make" command
  5. # on some systems is not smart enough to handle the work which is
  6. # done by this file.
  7. #
  8. setenv MAJOR `grep 'major_rev.*=' globals.h | sed 's@.*"\(.*\)".*@\1@'`
  9. setenv MINOR `grep 'minor_rev.*=' globals.h | sed 's@.*"\(.*\)".*@\1@'`
  10. setenv OKFILENAME okbridge-$MAJOR$MINOR
  11. setenv OKBDIR `pwd | sed "s@.*/\([^/]*\)@\1@"`
  12. cd .. 
  13. echo Ztar\'ing $OKBDIR into $OKFILENAME.tar.Z
  14. tar -cf $OKFILENAME.tar $OKBDIR
  15. compress $OKFILENAME.tar
  16.