mirror of https://github.com/ceph/ceph
10 lines
184 B
Bash
10 lines
184 B
Bash
|
#!/bin/sh -x
|
||
|
git submodule update --init --recursive
|
||
|
if test -e build; then
|
||
|
echo 'build dir already exists; rm -rf build and re-run'
|
||
|
exit 1
|
||
|
fi
|
||
|
mkdir build
|
||
|
cd build
|
||
|
cmake $@ ..
|