makelib.bat
来自「想学习汇编语言的」· Batch 代码 · 共 23 行
BAT
23 行
REM makeLib.bat
REM by Kip Irvine
REM Last update: 2/1/02
REM Adds Irvine32.obj to the IRVINE32.LIB link library
REM Requires the 32-bit LIB.EXE program in the Microsoft Visual Studio directory.
REM (Microsoft does not supply this program with MASM.)
@ECHO OFF
cls
REM *** You must edit the following path to match your own system *****
SET EXEPATH="d:\ProgramFiles2000\Microsoft Visual Studio\VC98\BIN\LIB"
%EXEPATH% /SUBSYSTEM:CONSOLE Irvine32.obj
:terminate
SET EXEPATH=
pause
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?