makelibs.bat
来自「工欲善其事」· Batch 代码 · 共 39 行
BAT
39 行
@echo off
cls
@echo.
@echo.
@echo This operation performs the following actions,
@echo.
@echo 1. Builds the IMPORT Libraries for system API calls.
@echo.
@echo 2. Builds the MASM32 static library.
@echo.
@echo 3. Builds the FPULIB static library.
@echo.
@echo 4. Installs the VKdebug files into MASM32.
@echo.
@echo ------------------------------------
@echo Press any key to build the libraries
@echo ------------------------------------
@echo.
pause > nul
cd include
call bldlibs.bat
cd ..
cd m32lib
call make.bat
cd ..
cd fpulib
call make.bat
cd ..
cd vkdebug
call setup.bat
cd ..
cls
@echo.
@echo.
@echo The library building operations are now complete,
@echo please close this console window.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?