encfs/build.sh
Jakob Unterwurzacher fe4b2a6345 Add "build.sh" helper script
Simplifies compiling encfs and is also used by test.sh
2015-11-12 19:18:35 +01:00

16 lines
103 B
Bash
Executable File

#!/bin/bash
set -eu
if [ ! -d build ]
then
mkdir build
cd build
cmake ..
else
cd build
fi
make