FreeCalypso > hg > fc-selenite
view scripts/test-make.sh @ 41:17814dcf6965
tms470/rts: import from Magnetite
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 17 Jul 2018 08:16:15 +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