FreeCalypso > hg > fc-selenite
view scripts/test-make.sh @ 61:935692f51b38
src/g23m-gsm/alr2/alr.h: removed bogus extern to pass gcc compilation
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 19 Jul 2018 23:30:08 +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