ceph/do_cmake.sh

10 lines
184 B
Bash
Raw Normal View History

#!/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 $@ ..