|
Last change
on this file since 2747 was
2747,
checked in by aslmd, 3 years ago
|
|
adding unmodified code from WRFV3.0.1.1, expurged from useless data +1M size
|
-
Property svn:executable set to
*
|
|
File size:
278 bytes
|
| Line | |
|---|
| 1 | #!/bin/csh |
|---|
| 2 | |
|---|
| 3 | # strip all the dependencies out of the makefiles so it compiles quicker |
|---|
| 4 | |
|---|
| 5 | if ( ! -d tools ) then |
|---|
| 6 | echo 'must be run in top level dir' |
|---|
| 7 | endif |
|---|
| 8 | |
|---|
| 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 |
|---|
| 14 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.