Mercurial > hg > piper-vamp-js-builds
view build-all.sh @ 42:36f67ba6f29c
Add Constant-Q plugin build
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Fri, 10 Mar 2017 15:40:40 +0000 |
parents | b51164a0c0f9 |
children | 5383956f326d |
line wrap: on
line source
#!/bin/bash clean="" if [ "$1" = "clean" ]; then clean=yes fi set -eu for x in *; do if [ -d "$x" ] && [ -f "$x/Makefile" ]; then if [ -n "$clean" ]; then make -C "$x" clean fi make -C "$x" em fi done for x in *; do if [ -d "$x" ] && [ -f "$x/Makefile" ]; then echo make -C "$x" test fi done echo echo "All done" echo "Outputs:" ls -l */*.js