OSDN Git Service

こっそり、気持ち程度の日本語化しました (UTF-8 / Windows 環境用)。
[ring-lang-081/annotated-ring-with-OmegaT.git] / source / ringpm / buildringpm.sh
1 ring2exe ringpm.ring
2 ./cleartemp.sh
3
4 cp ringpm $PWD/../bin/ringpm 
5
6 if [ -f ../lib/libring.dylib ];
7 then
8 echo "`pwd`/ringpm \$1 \$2 \$3 \$4 \$5 \$6 \$7" > /usr/local/bin/ringpm
9 chmod +x /usr/local/bin/ringpm
10 fi
11
12 if [ -f ../lib/libring.so ];
13 then
14 sudo echo "`pwd`/ringpm \$1 \$2 \$3 \$4 \$5 \$6 \$7" > /usr/bin/ringpm 
15 sudo chmod +x /usr/bin/ringpm
16 fi
17
18