15 lines
170 B
Bash
Executable File
15 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. scripts.inc
|
|
|
|
rm -rf dist
|
|
|
|
for dir in $DEVEL; do
|
|
echo $dir
|
|
(cd $dir && make build BUILDFLAGS="$BUILDFLAGS")
|
|
done
|
|
|
|
helpers/rename-with-buildhash
|