From a0416de83529685fa6ea8d09ff7354c41aaa5420 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Wed, 4 Dec 2019 17:41:42 -0500 Subject: [PATCH] Add all.sh build script Signed-off-by: Alek Ratzloff --- all.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 all.sh diff --git a/all.sh b/all.sh new file mode 100755 index 0000000..1e84c74 --- /dev/null +++ b/all.sh @@ -0,0 +1,9 @@ +#!/bin/bash +set -eo pipefail + +script_dir="$(dirname "$0")" + +find "$script_dir" -type d -name 'day*' | while read dirname; do + echo "$dirname" + make -C "$dirname" "$@" +done