Add a simple build script to make sure all .adb files are built

This commit is contained in:
R. Tyler Croy 2011-03-13 14:43:29 -07:00
parent 8b65084b94
commit 100c3a807e
1 changed files with 5 additions and 0 deletions

5
build.sh Executable file
View File

@ -0,0 +1,5 @@
#!/bin/sh -xe
for f in *.adb; do
gnatmake $f;
done;