auth.bat
上传用户:caisangzi8
上传日期:2013-10-25
资源大小:15756k
文件大小:1k
- echo off
- if "%1" == "16" goto sdram16
- if "%1" == "32" goto sdram32
- if "%1" == "" goto bad_parameter
- goto bad_parameter
- REM===================================================================
- :bad_parameter
- echo **********************
- echo bad parameter
- echo for 16m, usage: auth 16
- echo for 32m, usage: aauth 32
- echo **********************
- cd auth
- goto end
- REM===================================================================
- REM ==========================================
- :sdram16
- del auth*.a
- del mipsel-elflibauth_16.a
- cd auth
- make
- copy libauth.a ..mipsel-elflibauth_16.a
- if not exist libauth.a goto failed
- goto end
- REM ==========================================
- REM ==========================================
- :sdram32
- del auth*.a
- del mipsel-elflibauth_8202.a
- cd auth
- make
- copy libauth.a ..mipsel-elflibauth_8202.a
- if not exist libauth.a goto failed
- goto end
- REM ==========================================
- REM ======================================
- :failed
- echo *************************
- echo failed on generating libauth.a
- REM ======================================
- :end
- cd..