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

📄 makefile.min

📁 字体缩放显示
💻 MIN
字号:
# This file is part of the FreeType project.## It builds the library for MinGW32 gcc under Win9x.## You will need a port of GNU make; the MinGW32 port works.## Use this file while in the lib directory with the following statements:##   make -f arch/win32/Makefile.Min depend#   make -f arch/win32/Makefile.Min### When compared to the other Makefiles for gcc, there is a difference# here, because COMMAND.COM on Win 9x is not able to process more than# 126 characters.  So the command line for ar use the * shell character.## This is not as safe as normal, because unnecessary files may be# included by mistake in the library.# The normal behaviour can be restored by defining NON_LIMITED_SHELL=1### Copyright 1996-2002 by# David Turner, Robert Wilhelm, and Werner Lemberg.## This file is part of the FreeType project, and may only be used, modified,# and distributed under the terms of the FreeType project license,# LICENSE.TXT.  By continuing to use, modify, or distribute this file you# indicate that you have read the license and understand and accept it# fully. ARCH = arch/win32FT_MAKEFILE = $(ARCH)/Makefile.MinCC = gccifdef DEBUGCFLAGS = -Wall -O2 -g -ansi -pedantic -I$(ARCH) -I. -IextendelseCFLAGS = -Wall -ansi -pedantic -O2 -s -I$(ARCH) -I. -IextendendifTTFILE = ./ttfile.cTTMEMORY = ./ttmemory.cTTMUTEX = ./ttmutex.cPORT = $(TTFILE) $(TTMEMORY) $(TTMUTEX)SRC_X = extend/ftxgasp.c extend/ftxkern.c  extend/ftxpost.c \        extend/ftxcmap.c extend/ftxwidth.c extend/ftxsbit.c \        extend/ftxgsub.c extend/ftxgpos.c  extend/ftxgdef.c \        extend/ftxopen.c extend/ftxerr18.cOBJS_X = $(SRC_X:.c=.o)SRC_M = ttapi.c     ttcache.c   ttcalc.c   ttcmap.c  ttdebug.c \        ttgload.c   ttinterp.c  ttload.c   ttobjs.c  \        ttraster.c  ttextend.c  $(PORT)OBJS_M = $(SRC_M:.c=.o) $(OBJS_X)SRC_S = $(ARCH)/freetype.cOBJ_S = $(SRC_S:.c=.o)OBJS_S = $(OBJ_S) $(OBJS_X)%.o: %.c	$(CC) $(CFLAGS) -c -o $@ $<.PHONY: all debug clean distclean dependall:	$(MAKE) -f $(FT_MAKEFILE) LIB_FILES=$(OBJS_S) OBJ_LOC=$(ARCH) libttf.adebug:	$(MAKE) -f $(FT_MAKEFILE) LIB_FILES=$(OBJS_M) DEBUG=1 OBJ_LOC=. libttf.a$(OBJ_S): $(SRC_S) $(SRC_M)ifdef NOT_LIMITED_SHELLlibttf.a: $(LIB_FILES)	-del $@	ar src $@ $^else# The previous command exceeds the capacity of COMMAND.COM,# so we cheat by passing * character to arlibttf.a: $(LIB_FILES)	-del $@	ar src $@ $(OBJ_LOC)/*.o extend/*.o endifclean:	-del *.o	-del extend\*.o	-del $(subst /,\,$(ARCH)\*.o)	-del responsedistclean: clean	-del dep.end	-del libttf.adepend: $(SRC_S) $(SRC_M) $(SRC_X)	$(CC) -E -MM -I$(ARCH) -I. -Iextend $^ > dep.endifeq (dep.end,$(wildcard dep.end))  include dep.endendif# end of Makefile.Min

⌨️ 快捷键说明

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