repo.or.cz
/
WRF.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge remote-tracking branch 'origin/release-v4.6.1'
[WRF.git]
/
compile_new
blob
721df9d3bf24d49654ac6469396f68941d926862
1
#!/bin/sh
2
# Meant to be run at the top level
3
4
# Now run cmake
5
buildDirectory
=
$1
6
if
[ !
-d
"
$buildDirectory
"
];
then
7
buildDirectory
=
$PWD
/
_build
8
echo
"Using default build directory :
${buildDirectory}
"
9
else
10
shift
11
fi
12
cd
$buildDirectory
&&
make install
$
*
13
exit
$?