~ubuntu-branches/ubuntu/hoary/ifupdown/hoary

« back to all changes in this revision

Viewing changes to makecdep.sh

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Towns
  • Date: 2001-06-19 00:04:30 UTC
  • Revision ID: james.westby@ubuntu.com-20010619000430-ivxncx51i5i5dpk0
Tags: upstream-0.6.4
ImportĀ upstreamĀ versionĀ 0.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
FILE=$1
 
3
if [ "$FILE" = "" -o ! -f "$FILE" ]; then
 
4
        echo "Please specify a .c file"
 
5
        exit 1
 
6
fi
 
7
 
 
8
gcc -MM -MG $FILE |
 
9
  sed -e 's@^\(.*\)\.o:@\1.o \1.d:@'