2024-03-17 18:08:01 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -xe
|
|
|
|
|
|
|
|
cd source
|
2024-06-02 04:34:59 -04:00
|
|
|
gnatmake -gnatp -O3 -f -fstack-check -fno-exceptions -c main.adb
|
2024-03-17 18:08:01 -04:00
|
|
|
gnatbind main.ali
|
|
|
|
gnatlink -o xhads main.ali -lraylib
|
|
|
|
mv xhads ../xhads
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
exit
|