Added program that is checking for all 4 tests at once
[wrffire.git] / wrfv2_fire / tools / danger
bloba9de33f6fd30cfeefdca139e8d2b3594e3d788a5
1 #!/bin/csh
3 # strip all the dependencies out of the makefiles so it compiles quicker
5 if ( ! -d tools ) then
6 echo 'must be run in top level dir'
7 endif
9 tools/safe >& /dev/null
10 foreach f ( */Makefile )
11 /bin/mv $f $f.saved
12 cat $f.saved | sed '/ DEPENDENCIES/,$d' > $f
13 end