2.bat
上传用户:caisangzi8
上传日期:2013-10-25
资源大小:15756k
文件大小:1k
- @ECHO OFF
- if "%1" == "16" goto start
- if "%1" == "32" goto start
- if "%1" == "" goto bad_parameter
- goto bad_parameter
- REM===================================================================
- :bad_parameter
- echo **********************
- echo bad parameter
- echo for 16m, usage: all 16
- echo for 32m, usage: all 32
- echo **********************
- goto end
- REM===================================================================
- :start
- font_parse.exe
- del mipscrt0.o
- del mipsinit0.o
- del mipsintdrv.o
- if "%1" == "16" goto sdram16
- if "%1" == "32" goto sdram32
- REM===================================================================
- :sdram16
- if exist systemmakefile call sys.bat %1
- if not exist mipsel-elflibsys_16.a goto failed
- call 1.bat %1
- if not exist mipsel-elflibir_8202.a goto failed
- goto end
- REM===================================================================
- REM===================================================================
- :sdram32
- if exist systemmakefile call sys.bat %1
- if not exist mipsel-elflibsys_8202.a goto failed
- call 1.bat %1
- if not exist mipsel-elflibir_8202.a goto failed
- goto end
- REM===================================================================
- REM ===================================================================
- :failed
- echo compile failed
- echo *************************
- REM ===================================================================
- :end