Version abc70930

This commit is contained in:
Alan Mishchenko
2007-09-30 08:01:00 -07:00
parent 7d7e60f2dc
commit e54d969161
811 changed files with 248706 additions and 18038 deletions
-13
View File
@@ -1,13 +0,0 @@
#!/bin/sh
#echo "## Got: $*"
CC="$1"
DIR="$2"
shift 2
case "$DIR" in
"" | ".")
$CC -MM -MG "$@" | sed -e 's@^\(.*\)\.o:@\1.d \1.o:@'
;;
*)
$CC -MM -MG "$@" | sed -e "s@^\(.*\)\.o:@$DIR/\1.d $DIR/\1.o:@"
;;
esac