Mercurial > hg > piper-vamp-js-builds
annotate build-all.sh @ 2:95ac23360324
Update for current namespaces etc
author | Chris Cannam |
---|---|
date | Thu, 10 Nov 2016 15:06:53 +0000 |
parents | |
children | cecea0d6719d |
rev | line source |
---|---|
Chris@2 | 1 #!/bin/bash |
Chris@2 | 2 |
Chris@2 | 3 set -eu |
Chris@2 | 4 |
Chris@2 | 5 for x in *; do |
Chris@2 | 6 if [ -d "$x" ]; then |
Chris@2 | 7 if [ -f "$x/Makefile" ]; then |
Chris@2 | 8 make -C "$x" distclean |
Chris@2 | 9 make -C "$x" em |
Chris@2 | 10 fi |
Chris@2 | 11 fi |
Chris@2 | 12 done |
Chris@2 | 13 |
Chris@2 | 14 echo "Compiled:" |
Chris@2 | 15 ls -l */*.js |