checkin of ODE library. Do not modify the ODE source code; instead, follow the

development of ode at http://q12.org and periodically copy the q12.org ODE
sourcecode into this tree to update the Blender ODE.

This ODE has not been changed from q12.org and is provided here merely as a
convenience to Blender developers.
This commit is contained in:
Norman Lin
2002-10-18 15:02:02 +00:00
parent 1b15961786
commit bdad961ce3
97 changed files with 21829 additions and 0 deletions

11
extern/ode/dist/tools/process_deps vendored Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/perl
$a = join ('',<STDIN>);
$a =~ s/\\\n/ /g; # join continued lines
$a =~ s/(^\S+:)/$ARGV[0]$1/gm; # put prefix in front of rules
$a =~ s/\s+\/\S+/ /g; # remove absolute path dependencies
$a =~ s/\s+\n/\n/g; # remove whitespace at end of lines
$a =~ s/[ \t]+/ /g; # clean up interior whitespace
$a =~ s/ / \\\n /g; # put back line continuations
print $a;