⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mk.bat

📁 Due to an increase in demand for and questions about direct disk access for Micrososft platforms, a
💻 BAT
字号:
@echo off

rem I have three compilers (gosh it's nice). To keep my DOS
rem environment uncluttered I use only one at a time. Which
rem one is current is determined by the environment variables
rem as you can see below. This batch file makes it easy to
rem compile and test without too much typing...

if not "%WATCOM%"==""   wmake -f makefile.wcl %1 %2 %3 %4 %5
if not "%DJGPP%"==""    make  -fmakefile.gcc  %1 %2 %3 %4 %5
if not "%MSVC%"==""     nmake -f makefile.msc %1 %2 %3 %4 %5
if not "%MSDEVDIR%"=="" nmake -f makefile.msc %1 %2 %3 %4 %5

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -