diff options
author | rexim <reximkut@gmail.com> | 2024-03-30 08:08:18 +0700 |
---|---|---|
committer | rexim <reximkut@gmail.com> | 2024-03-30 08:08:18 +0700 |
commit | d90192d08e4cfaf98dd0db43813a95be86adb362 (patch) | |
tree | 52ab5390212d99802a4c7a3ac39995070e15efe5 | |
parent | 971ca82ac5445caa62b130ec034e6e63a70ce7fe (diff) |
Rename eepers executable on Linux to eepers-linux
-rw-r--r-- | .gitignore | 2 | ||||
-rwxr-xr-x | build-linux.sh | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ *.ali *.o -eepers +eepers-linux eepers.exe test test.exe diff --git a/build-linux.sh b/build-linux.sh index 8d17811..12f57f5 100755 --- a/build-linux.sh +++ b/build-linux.sh @@ -2,8 +2,8 @@ set -xe -gnatmake -f -O3 -Wall -Wextra -gnat2012 eepers.adb -bargs -static -largs -L./raylib/raylib-5.0_linux_amd64/lib/ -l:libraylib.a -lm -pthread -./eepers +gnatmake -f -O3 -Wall -Wextra -gnat2012 -o eepers-linux eepers.adb -bargs -static -largs -L./raylib/raylib-5.0_linux_amd64/lib/ -l:libraylib.a -lm -pthread +./eepers-linux # gnatmake -f -Wall -Wextra -gnat2022 test.adb -largs -L./raylib/raylib-5.0_linux_amd64/lib/ -l:libraylib.a -lm # ./test |