📄 makefile.gcc
字号:
# This file builds the library for Amiga using ADE environment.## You will need GNU make.## Use this file while in the lib directory with the following statement:## make -f arch/amigaos/Makefile.gcc### 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/amigaosFT_MAKEFILE = $(ARCH)/Makefile.gccAR = arRM = rmCC = gccCFLAGS = -Wall -pedantic -ansi -O2 -g -noixemul -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/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 \ ttextend.c ttfile.c ttgload.c ttinterp.c ttload.c \ ttmemory.c ttmutex.c ttobjs.c ttraster.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 distcleanall: $(MAKE) -f $(FT_MAKEFILE) LIB_FILES=OBJS_S libttf.adebug: $(MAKE) -f $(FT_MAKEFILE) LIB_FILES=OBJS_M libttf.a$(OBJ_S): $(SRC_S) $(SRC_M)libttf.a: $($(LIB_FILES)) $(AR) src $@ $^clean: $(RM) $($(LIB_FILES))distclean: clean $(RM) dep.end 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.gcc
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -