makeit.bat
来自「这是一个数字图像处理的matlab仿真程序」· Batch 代码 · 共 59 行
BAT
59 行
@echo off
: -------------------------------
: if resources exist, build them
: -------------------------------
if not exist rsrc.rc goto over1
\MASM32\BIN\Rc.exe /v rsrc.rc
\MASM32\BIN\Cvtres.exe /machine:ix86 rsrc.res
:over1
if exist %1.obj del barchart.obj
if exist %1.exe del barchart.exe
: -----------------------------------------
: assemble barchart.asm into an OBJ file
: -----------------------------------------
\MASM32\BIN\Ml.exe /c /coff barchart.asm
if errorlevel 1 goto errasm
if not exist rsrc.obj goto nores
: --------------------------------------------------
: link the main OBJ file with the resource OBJ file
: --------------------------------------------------
\MASM32\BIN\PoLink.exe /SUBSYSTEM:WINDOWS barchart.obj rsrc.res
if errorlevel 1 goto errlink
dir barchart.*
goto TheEnd
:nores
: -----------------------
: link the main OBJ file
: -----------------------
\MASM32\BIN\PoLink.exe /SUBSYSTEM:WINDOWS barchart.obj
if errorlevel 1 goto errlink
dir barchart.*
goto TheEnd
:errlink
: ----------------------------------------------------
: display message if there is an error during linking
: ----------------------------------------------------
echo.
echo There has been an error while linking this project.
echo.
goto TheEnd
:errasm
: -----------------------------------------------------
: display message if there is an error during assembly
: -----------------------------------------------------
echo.
echo There has been an error while assembling this project.
echo.
goto TheEnd
:TheEnd
pause
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?