📄 cx_b55.mak
字号:
BORLANDPATH = "C:\program files\Borland\cbuilder5"
TASM = TASM32
TLIB = tlib
TLINK = ilink32
LIBPATH = $(BORLANDPATH)\LIB
INCLUDEPATH = $(BORLANDPATH)\INCLUDE
DIFF = sdiff
PRE =
CC = bcc32 -W- -v- -H- -3 -N -Og -Oi -Ov -f -I$(INCLUDEPATH)
.cpp.obj:
$(CC) -c {$< }
everything: cxtest.exe mandel.exe
cxtest_obj = cxtest.obj myexcept.obj cx.obj cx_polar.obj cxtest1.obj cxtest2.obj
cxtest.exe: $(cxtest_obj)
$(TLINK) /x/L$(LIBPATH)/Gn -Tpe -ap -c @&&|
c0x32.obj $(cxtest_obj),$@,,import32.lib cw32.lib
|
mandel_obj = mandel.obj myexcept.obj cx.obj cx_polar.obj
mandel.exe: $(mandel_obj)
$(TLINK) /x/L$(LIBPATH)/Gn -Tpe -ap -c @&&|
c0x32.obj $(mandel_obj),$@,,import32.lib cw32.lib
|
cxtest.obj: cxtest.cpp include.h array1.h cx.h cxtest.h myexcept.h
myexcept.obj: myexcept.cpp include.h myexcept.h
cx.obj: cx.cpp cx.h include.h myexcept.h
cx_polar.obj: cx_polar.cpp include.h myexcept.h cx.h
cxtest1.obj: cxtest1.cpp include.h myexcept.h array1.h cx.h cxtest.h
cxtest2.obj: cxtest2.cpp include.h myexcept.h array1.h cx.h cxtest.h
mandel.obj: mandel.cpp include.h array1.h cx.h myexcept.h
cxtest.txx: cxtest.exe
$(PRE)cxtest > cxtest.txx
$(DIFF) cxtest.txt cxtest.txx
mandel.txx: mandel.exe
$(PRE)mandel > mandel.txx
$(DIFF) mandel.txt mandel.txx
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -