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

📄 makefile.min

📁 字体缩放显示
💻 MIN
字号:
# This file is part of the FreeType project.## It builds the library and test programs for MinGW32 gcc under Win9x.## You will need a port of GNU make; the MingW32 port works.## Use this file while in the 'test' directory with the following statements:##   make -f arch/win32/Makefile.min depend#   make -f arch/win32/Makefile.min### 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 = gccLIBDIR = ../libINCDIRS = -I$(LIBDIR) -I$(LIBDIR)/$(ARCH) -I. -I$(LIBDIR)/extendifdef DEBUGCFLAGS  = -ansi -pedantic -Wall -O2 -g $(INCDIRS)LDFLAGS = -g -luser32 -lgdi32elseCFLAGS  = -ansi -pedantic -Wall -O2 -s $(INCDIRS)LDFLAGS = -s -luser32 -lgdi32endif# graphic Windows driverGDRIVER = $(ARCH)/gw_win32.cSRC = arabic.c \      common.c \      textdisp.c \      ftdump.c \      fterror.c \      ftlint.c \      ftmetric.c \      ftsbit.c \      ftstring.c \      ftstrpnm.c \      ftstrtto.c \      fttimer.c \      ftview.c \      ftzoom.cGSRC = gmain.c display.c blitter.c $(GDRIVER)GOBJ = $(GSRC:.c=.o)%.o: %.c	$(CC) $(CFLAGS) -c -o $@ $<%.exe:	$(CC) $(LDFLAGS) -o $@ $^EXEFILES = ftdump.exe \           fterror.exe \           ftlint.exe \           ftmetric.exe \           ftsbit.exe \           ftstring.exe \           ftstrpnm.exe \           ftstrtto.exe \           fttimer.exe \           ftview.exe \           ftzoom.exe.PHONY: all debug freetype freetype_debug \        clean distclean do_clean dependall: freetype $(EXEFILES)debug: freetype_debug $(EXEFILES)freetype:	$(MAKE) -C $(LIBDIR) -f $(FT_MAKEFILE) allfreetype_debug:	$(MAKE) -C $(LIBDIR) -f $(FT_MAKEFILE) debugftzoom.exe: $(GOBJ) ftzoom.o common.o $(LIBDIR)/libttf.aftview.exe: $(GOBJ) ftview.o common.o $(LIBDIR)/libttf.aftlint.exe: ftlint.o common.o $(LIBDIR)/libttf.aftdump.exe: ftdump.o common.o $(LIBDIR)/libttf.afterror.exe: fterror.o common.o $(LIBDIR)/libttf.aftstring.exe: $(GOBJ) ftstring.o common.o $(LIBDIR)/libttf.afttimer.exe: $(GOBJ) fttimer.o common.o $(LIBDIR)/libttf.aftstrpnm.exe: ftstrpnm.o common.o $(LIBDIR)/libttf.aftsbit.exe: ftsbit.o common.o textdisp.o $(LIBDIR)/libttf.aftmetric.exe: ftmetric.o common.o textdisp.o $(LIBDIR)/libttf.aftstrtto.exe: $(GOBJ) ftstrtto.o common.o arabic.o $(LIBDIR)/libttf.aclean: do_clean	$(MAKE) -C $(LIBDIR) -f $(FT_MAKEFILE) cleandistclean: do_clean	$(MAKE) -C $(LIBDIR) -f $(FT_MAKEFILE) distclean	-del dep.end	-del *.exe	-del coredo_clean:	-del *.o	-del response	-del $(subst /,\,$(GDRIVER:.c=.o))depend: $(SRC) $(GSRC)	$(MAKE) -C $(LIBDIR) -f $(FT_MAKEFILE) depend	$(CC) -E -MM $(INCDIRS) $^ > dep.endifeq (dep.end,$(wildcard dep.end))  include dep.endendif# end of Makefile.gcc

⌨️ 快捷键说明

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