cx_b56.mak
来自「VC环境下的实用的复数库函数,编译后可作为库函数使用.」· MAK 代码 · 共 55 行
MAK
55 行
BORLANDPATH = "C:\program files\Borland\cbuilder6"
TASM = TASM32
TLIB = tlib
TLINK = ilink32
LIBPATH = $(BORLANDPATH)\LIB
INCLUDEPATH = $(BORLANDPATH)\INCLUDE
DIFF = sdiff
PRE =
CC = bcc32 -W- -v- -H- -6 -Og -Oi -Ov -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 + =
减小字号Ctrl + -
显示快捷键?