📄 makefile.dm
字号:
# This file is part of the FreeType project.## It builds the library and test programs for emx-gcc or djgpp under MSDOS.## You will need dmake.## Use this file while in the lib directory with the following statement:## dmake -r -f arch/msdos/Makefile.dm### Copyright 1996-2001 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/msdosFT_MAKEFILE = $(ARCH)/Makefile.dmFT_MAKE = dmake -r.IMPORT: COMSPECSHELL := $(COMSPEC)SHELLFLAGS := /cGROUPSHELL := $(SHELL)GROUPFLAGS := $(SHELLFLAGS)GROUPSUFFIX := .batSHELLMETAS := *"?<>&|CC = gccCFLAGS = -Wall -O2 -g -ansi -pedantic -I$(ARCH) -I. -Iextend# CFLAGS = -Wall -ansi -O2 -s -I$(ARCH) -I. -IextendSRC_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/ftxopen.c \ extend/ftxgdef.c extend/ftxerr18.cOBJS_X = $(SRC_X:.c=.o)SRC_M = ttapi.c ttcache.c ttcalc.c ttcmap.c ttdebug.c \ ttfile.c ttgload.c ttinterp.c ttload.c \ ttmemory.c ttmutex.c ttobjs.c ttraster.c ttextend.cOBJS_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: $(FT_MAKE) -f $(FT_MAKEFILE) LIB_FILES=OBJS_S libttf.adebug: $(FT_MAKE) -f $(FT_MAKEFILE) LIB_FILES=OBJS_M libttf.a$(OBJ_S): $(SRC_S) $(SRC_M) $(CC) $(CFLAGS) -c -o $@ $(SRC_S)libttf.a: $($(LIB_FILES)) +-del $@ ar src $@ @$(mktmp $(<:t"\n")\n)clean:-[ del *.o del extend\*.o del $(ARCH)\*.o]distclean: clean-[ del dep.end del libttf.a]# depend: $(SRC_S) $(SRC_M) $(SRC_X)# $(CC) -E -M @$(mktmp $(<:t"\n")\n) > dep.end# ifeq (dep.end,$(wildcard dep.end))# include dep.end# endif# end of Makefile.dm
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -