1
0
mirror of https://github.com/vgough/encfs.git synced 2025-01-01 19:48:49 +01:00
encfs/vendor/github.com/muflihun/easyloggingpp/samples/boost/build_all.sh

16 lines
241 B
Bash
Raw Normal View History

# Builds all files into bin/
[ -d "bin" ] || mkdir "bin"
rm -rf bin/*
find . -maxdepth 1 -type f -name '*.cpp' -exec sh compile.sh {} $1 \;
echo "Completed!"
files=$(ls -l bin/)
if [ "$files" = "total 0" ];then
exit 1
else
exit 0
fi