2.bat
上传用户:caisangzi8
上传日期:2013-10-25
资源大小:15756k
文件大小:1k
源码类别:

DVD

开发平台:

C/C++

  1. @ECHO OFF
  2. if "%1" == "16" goto start
  3. if "%1" == "32" goto start
  4. if "%1" == "" goto bad_parameter
  5. goto bad_parameter
  6. REM===================================================================
  7. :bad_parameter
  8. echo **********************
  9. echo bad parameter
  10. echo for 16m, usage: all 16
  11. echo for 32m, usage: all 32
  12. echo **********************
  13. goto end
  14. REM===================================================================
  15. :start
  16. font_parse.exe
  17. del mipscrt0.o
  18. del mipsinit0.o
  19. del mipsintdrv.o
  20. if "%1" == "16" goto sdram16
  21. if "%1" == "32" goto sdram32
  22. REM===================================================================
  23. :sdram16
  24. if exist systemmakefile call sys.bat %1
  25. if not exist mipsel-elflibsys_16.a goto failed
  26. call 1.bat %1
  27. if not exist mipsel-elflibir_8202.a goto failed
  28. goto end
  29. REM===================================================================
  30. REM===================================================================
  31. :sdram32
  32. if exist systemmakefile call sys.bat %1
  33. if not exist mipsel-elflibsys_8202.a goto failed
  34. call 1.bat %1
  35. if not exist mipsel-elflibir_8202.a goto failed
  36. goto end
  37. REM===================================================================
  38. REM ===================================================================
  39. :failed
  40. echo compile failed
  41. echo *************************
  42. REM ===================================================================
  43. :end