Explorar el Código

Back to shell script, GNUmake is bad...

master
Ognjen Milan Robovic hace 2 meses
padre
commit
138f9066f2
Se han modificado 2 ficheros con 19 adiciones y 0 borrados
  1. +12
    -0
      compile.sh
  2. +7
    -0
      install.sh

+ 12
- 0
compile.sh Ver fichero

@@ -0,0 +1,12 @@
#!/bin/bash

set -xe

cd source
gnatmake -g -O3 -fstack-check -c main.adb
gnatbind main.ali
gnatlink -o xhads main.ali -lraylib
mv xhads ../xhads
cd ..

exit

+ 7
- 0
install.sh Ver fichero

@@ -0,0 +1,7 @@
#!/bin/bash

set -xe

cp xhads /usr/bin/xhads

exit

Cargando…
Cancelar
Guardar