소스 검색

Back to shell script, GNUmake is bad...

master
부모
커밋
138f9066f2
2개의 변경된 파일19개의 추가작업 그리고 0개의 파일을 삭제
  1. +12
    -0
      compile.sh
  2. +7
    -0
      install.sh

+ 12
- 0
compile.sh 파일 보기

@@ -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 파일 보기

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

set -xe

cp xhads /usr/bin/xhads

exit

불러오는 중...
취소
저장