FreeCalypso > hg > fc-selenite
view scripts/test-make.sh @ 44:77b8d6bc6b31
configure.sh: putting it all together (TMS470)
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 17 Jul 2018 09:34:25 +0000 |
parents | c8a4561ef581 |
children |
line wrap: on
line source
#!/bin/sh set -e for i in * do echo $i if [ $i != config ] then (cd $i; make) fi done