home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 231.lha / URay_v1.0 / Make.version < prev    next >
Text File  |  1989-04-04  |  398b  |  17 lines

  1. #
  2. # Places the comment at the top of README into all of the source files
  3. #
  4. sed -n '1,/\/$/p' README > version.txt
  5. foreach a ( $* )
  6.     echo "$a"
  7.     cp  version.txt      $a.new
  8.     sed '1,/\/$/d' $a >> $a.new
  9.     mv  $a.new $a
  10.     end
  11. echo "Makefile"
  12. sed '1,$s/^/#/' version.txt >  Makefile.new
  13. sed '1,/^[^#]/d' Makefile   >> Makefile.new
  14. mv  Makefile.new Makefile
  15. rm -f version.txt
  16. touch *.o uray
  17.