10 lines
73 B
Bash
10 lines
73 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
for f in *.grc
|
||
|
do
|
||
|
echo Building $f ...
|
||
|
grcc $f
|
||
|
done
|