⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 freetype.icc

📁 字体缩放显示
💻 ICC
字号:
#       Makefile for FTIFI using IBM VisualAge C++## Explanation of compiler switches used:#  -C        compile only, do not link#  -Sp1      pack structures on byte boundaries (quite important)#  -Ss       accept double slash (//) comments#  -Ge-      build a DLL#  -Rn       build a subsystem DLL; means that a special C library is#            linked and some calls cannot be used#  -Fo<name> create object file <name>#  -O+       optimizations on#  -G4       optimize for 486 (should be better for my 6x86MX, produces smaller#            code than Pentium optimization)# Linker switches used:#  /DE       include debug info in executable#  /NOE      no extended dictionary search#  /E:2      exepack (for Warp 3 and higher)#  /A:32     align pages of code on 32-byte boundaries (makes smaller file)#  /DBGPACK  pack debug info# uncomment ICCR and LNKR to build a release versionICCR=-O+ -G4LNKR=/PACKC /PACKD /M /A:32 /E:2# uncomment ICCD and LNKD to build a debug version. Note that debug and# release version is not mutually exclusive in this case.#ICCD=-Ti+ -DDEBUG#ICCD=-Ti+#LNKD=/DE /DBGPACK /MFreeType.dll:       $*.obj $*.def ..\lib\libttf.lib   ilink /NOE $(LNKD) $(LNKR) $*.obj ..\lib\libttf.lib libconv.lib $*.defFreeType.obj:       ftifi.c ftifi.h FreeType.icc   icc $(ICCD) $(ICCR) -C -Sp1 -Ss -Ge- -Rn -FoFreeType -I..\lib -I..\lib\extend -I..\lib\arch\os2 ftifi.c

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -