mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 15:02:20 +00:00
[CHG] Library installation script is improved (batch file)
This commit is contained in:
parent
42b1a60bdb
commit
5d4eec691b
1 changed files with 11 additions and 1 deletions
|
@ -9,6 +9,7 @@ echo Installing JPEG Library...
|
||||||
echo.
|
echo.
|
||||||
cd jpeg
|
cd jpeg
|
||||||
make install
|
make install
|
||||||
|
if errorlevel 1 goto error
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
Rem -- PNG & PNGU libraries
|
Rem -- PNG & PNGU libraries
|
||||||
|
@ -18,6 +19,7 @@ echo Installing PNG Library...
|
||||||
echo.
|
echo.
|
||||||
cd png
|
cd png
|
||||||
make install
|
make install
|
||||||
|
if errorlevel 1 goto error
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
|
@ -26,7 +28,9 @@ echo Building PNGU Library...
|
||||||
echo.
|
echo.
|
||||||
cd pngu
|
cd pngu
|
||||||
make clean
|
make clean
|
||||||
|
if errorlevel 1 goto error
|
||||||
make all
|
make all
|
||||||
|
if errorlevel 1 goto error
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
echo.
|
echo.
|
||||||
|
@ -35,9 +39,15 @@ echo Installing PNGU Library...
|
||||||
echo.
|
echo.
|
||||||
cd pngu
|
cd pngu
|
||||||
make install
|
make install
|
||||||
|
if errorlevel 1 goto error
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
Rem -- The End
|
|
||||||
echo.
|
echo.
|
||||||
echo Done
|
echo Done
|
||||||
|
goto end
|
||||||
|
:error
|
||||||
|
echo.
|
||||||
|
echo Installation Failed!
|
||||||
|
:end
|
||||||
|
Rem -- The End
|
||||||
echo.
|
echo.
|
||||||
|
|
Loading…
Reference in a new issue