BLDALL.BAT
上传用户:haohao_zhu
上传日期:2014-08-15
资源大小:2446k
文件大小:1k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. @echo off
  2. if not exist rsrc.rc goto over1
  3. masm32binrc /v rsrc.rc
  4. masm32bincvtres /machine:ix86 rsrc.res
  5. :over1
  6. if exist %1.obj del %1.obj
  7. if exist %1.exe del %1.exe
  8. masm32binml /c /coff %1.asm
  9. if errorlevel 1 goto errasm
  10. if not exist rsrc.obj goto nores
  11. masm32binLink /section:mysection,ERW /SUBSYSTEM:WINDOWS %1.obj rsrc.obj
  12. if errorlevel 1 goto errlink
  13. dir %1.*
  14. goto TheEnd
  15. :nores
  16. masm32binLink /section:mysection,ERW /SUBSYSTEM:WINDOWS %1.obj
  17. if errorlevel 1 goto errlink
  18. dir %1
  19. goto TheEnd
  20. :errlink
  21. echo _
  22. echo Link error
  23. goto TheEnd
  24. :errasm
  25. echo _
  26. echo Assembly Error
  27. goto TheEnd
  28. :TheEnd
  29. pause