?? cc.bat
字號:
@ECHO OFF
goto Start
******************************************************************************
*
* File : CC.bat
* Parameters: %1 Name of file to compile (without extension; .c is added)
* Purpose : Compile one file and add it to the list of files to put in
* Library
*
* This file as is uses the Watcom Compile for x86 targets.
*
******************************************************************************
:START
wcc Temp\Source\%1.c -os -fo=temp\output\%1.obj -i=c:\tool\c\watcom\h; -w4 -e25 -s -zq -ox -oi -zu -4 -bt=dos -mh
IF ERRORLEVEL 1 PAUSE
ECHO +Temp\Output\%1.OBJ>>Temp\Output\Lib.dat
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -