freetype.wat
来自「字体缩放显示」· WAT 代码 · 共 30 行
WAT
30 行
# 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 + =
减小字号Ctrl + -
显示快捷键?