📄 bc55.mak
字号:
# very basic makefile for jgrep.exe## Borland C++ tools## BCROOT defines the root directory of your bc builder install#!ifndef BCROOTBCROOT=$(MAKEDIR)\..!endifBCC32 = $(BCROOT)\bin\Bcc32.exeLIBPATH=..\..\build\bcb5IDE_LinkFLAGS32 = -L$(BCROOT)\LIBLINKOPTS= -ap -Tpe -xCOMPOPTS= -O2 -tWM- -Vx -Ve -DSTRICT; -I$(BCROOT)\include;../../../../; -D_NO_VCLjgrep.exe : jgrep.obj main.obj $(BCC32) $(COMPOPTS) -e$@ -L$(LIBPATH) main.obj jgrep.objjgrep.obj : jgrep.cpp $(BCC32) -c @&&| $(COMPOPTS) -o$@ jgrep.cpp|main.obj : main.cpp $(BCC32) -c @&&| $(COMPOPTS) -o$@ main.cpp|
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -