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