diff options
author | Ian Moffett <ian@osmora.org> | 2024-08-03 13:32:38 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-08-03 13:32:38 -0400 |
commit | 90cdc3a22fc10f1d00045f2859beb13f1598c1e5 (patch) | |
tree | 72dccf9ab29de6c2602087aa39aa7c6e5a4aa6c7 /tb/build.sh | |
parent | 18d02bc7af5ed29e4c8ff094c9c161fc6f115ec7 (diff) |
tb: build.sh -> tb/build.sh
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'tb/build.sh')
-rwxr-xr-x | tb/build.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tb/build.sh b/tb/build.sh new file mode 100755 index 0000000..1954eb5 --- /dev/null +++ b/tb/build.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +dirlist=$(find . -type f -name "Makefile") + +for dir in $dirlist +do + make -C $(dirname $dir) +done |