auth.bat
资源名称:8202s.rar [点击查看]
上传用户:poi891205
上传日期:2013-07-15
资源大小:9745k
文件大小:1k
源码类别:
DVD
开发平台:
C/C++
- 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..