diff options
| author | ruki <[email protected]> | 2015-04-28 18:20:48 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2015-04-28 18:20:48 +0800 |
| commit | 3dfa09ba04c127a68d47b6144b586006a95b6820 (patch) | |
| tree | 0e22df47217df9d98f51276a6a7be143d0dde338 /install | |
| parent | 43e612143df1333bc3e5d0d86c6c21619b9031d0 (diff) | |
impl install.bat
Diffstat (limited to 'install')
| -rwxr-xr-x | install | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -35,13 +35,14 @@ if [ $plat = "linux" ] || [ $plat = "mac" ]; then fi # compile xmake-core +echo compiling xmake-core... cd ./core if [ -f .config.mak ]; then rm .config.mak fi -make f DEBUG=$debug +make f DEBUG=$debug > ../install.log if [ $? -ne 0 ]; then exit; fi -make r +make r >> ../install.log if [ $? -ne 0 ]; then exit; fi cd .. @@ -75,3 +76,6 @@ xmake_loader_install=/usr/local/bin/xmake sudo mv $xmake_loader $xmake_loader_install sudo chmod 777 $xmake_loader_install if [ $? -ne 0 ]; then exit; fi + +# ok +echo ok! |
