Improved makefile

This commit is contained in:
2017-06-16 15:38:10 +02:00
parent 6e57f0659c
commit 880222a65d
3 changed files with 16 additions and 1 deletions

4
patches/build.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
MYDIR="$(dirname "$(realpath "$0")")"
cd "$MYDIR"
for dir in ./*; do ([ -d "$dir" ] && cd "$dir" && echo "Building $dir" && go build); done