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:
11
extern/ode/dist/tools/process_deps
vendored
Executable file
11
extern/ode/dist/tools/process_deps
vendored
Executable 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;
|
Reference in New Issue
Block a user