bcb5.mak
来自「正则表达式源代码」· MAK 代码 · 共 51 行
MAK
51 行
# 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..\..\build\bcb5 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 + =
减小字号Ctrl + -
显示快捷键?