FreeCalypso > hg > fc-selenite
annotate scripts/test-make.sh @ 210:b81101e50fc6
uartfax.c: pull from Tourmaline (GTM900 RI output)
uartfax.c will now be exactly the same between Magnetite, Selenite
and Tourmaline.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 24 Oct 2020 17:46:26 +0000 |
parents | c8a4561ef581 |
children |
rev | line source |
---|---|
30
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 #!/bin/sh |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 set -e |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 for i in * |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 do |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 echo $i |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 if [ $i != config ] |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 then |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 (cd $i; make) |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 fi |
c8a4561ef581
scripts/test-{make,setup}.sh: component compilation test
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 done |