summaryrefslogtreecommitdiff
path: root/depend.sh
diff options
context:
space:
mode:
authorleo2005-06-05 01:51:55 +0000
committerleo2005-06-05 01:51:55 +0000
commitf9f670643398aac6ad917505ccd76d2cf50230c7 (patch)
tree11e5c96a29e36d26a766d2d9c25d0dd83af7ebf3 /depend.sh
parent583033b8bc46f46a039144c0d8fa97d406bc64ee (diff)
Updated LeoCAD to use GTK+ 2.0
git-svn-id: http://svn.leocad.org/trunk@403 c7d43263-9d01-0410-8a33-9dba5d9f93d6
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:@'
-