Chris@2: #!/bin/bash Chris@2: Chris@2: set -eu Chris@2: Chris@2: for x in *; do Chris@2: if [ -d "$x" ]; then Chris@2: if [ -f "$x/Makefile" ]; then Chris@2: make -C "$x" distclean Chris@2: make -C "$x" em Chris@2: fi Chris@2: fi Chris@2: done Chris@2: Chris@2: echo "Compiled:" Chris@2: ls -l */*.js