From fe4b2a63456d98454f388aaa05b7c7ed670d2b63 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Thu, 12 Nov 2015 19:13:54 +0100 Subject: [PATCH] Add "build.sh" helper script Simplifies compiling encfs and is also used by test.sh --- build.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 build.sh diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..f5cf5cb --- /dev/null +++ b/build.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +set -eu + +if [ ! -d build ] +then + mkdir build + cd build + cmake .. +else + cd build +fi + +make +