home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / maths / plplot / plplot_2 / cf / cvtdeps < prev    next >
Encoding:
Text File  |  1994-07-29  |  243 b   |  8 lines

  1. #!/bin/sh
  2. #
  3. # A simple sed driver to convert gcc output dependencies to a more useful
  4. # form.  It can't go in the Makefile since the $O would get expanded.
  5. # The gcc output dependencies are read from standard input.
  6.  
  7. sed 's/\.o/\$O/' >deps.in
  8.