comparison scripts/test-make.sh @ 30:c8a4561ef581

scripts/test-{make,setup}.sh: component compilation test
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 16 Jul 2018 00:10:23 +0000
parents
children
comparison
equal deleted inserted replaced
29:0c7ec2b7183d 30:c8a4561ef581
1 #!/bin/sh
2
3 set -e
4
5 for i in *
6 do
7 echo $i
8 if [ $i != config ]
9 then
10 (cd $i; make)
11 fi
12 done