📄 mk.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 + -