Version abc50729

This commit is contained in:
Alan Mishchenko
2005-07-29 08:01:00 -07:00
parent 7f94414388
commit 888e5bed5d
316 changed files with 150814 additions and 0 deletions
Executable
+13
View File
@@ -0,0 +1,13 @@
#!/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