📄 freetype.wat
字号:
# WARNING!! this doesn't quite work yet!!!!## Makefile for FTIFI using Watcom C/C++## Explanation of compiler switches used:# -4r register calling convention, generate 486 code. Better than# Pentium opt. for Cyrix/IBM and AMD# -otexan maximum optimization for speed# -zp1 pack structures on byte boundaries (quite important!)# -bd build a DLL# -zc# -d2 include debug info## Important linker options used:# initglobal call DLL initialization function only once (not for each# process)# termglobal call DLL termination function only once# oneautodata use only one shared data segmentWCCR=-4r -otexan#WCCD=-d2 -DDEBUG#LNKD=debug allFreeType.dll: $*.obj $*.def wlink system os2v2 dll initglobal termglobal op oneautodata export GetOutline_ export FONT_DRIVER_DISPATCH_TABLE=_fdhdr file $* lib ..\lib\libttf.lib $(LNKD)FreeType.obj: ftifi.c ftifi.h wcc386 $(WCCD) $(WCCR) -zp1 -bd -zc -I..\lib -I..\lib\extend ftifi.c /Fo=freetype.obj
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -