summaryrefslogtreecommitdiff
path: root/depend.sh
diff options
context:
space:
mode:
Diffstat (limited to 'depend.sh')
-rwxr-xr-xdepend.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/depend.sh b/depend.sh
deleted file mode 100755
index 7e43e21..0000000
--- a/depend.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-DEP=$1
-DIR=$2
-CC=$3
-shift 3
-
-echo -n "$DEP $DIR/" > $DEP
-if { !(eval $CC -MM $*) >> $DEP; }; then
- rm -f $DEP;
- exit 1;
-fi
-
-#sed -e 's@^\(.*\)\.o:@\1.d \1.o:@'
-