1# 2# FreeType 2 auto-fitter module configuration rules 3# 4 5 6# Copyright 2003-2007, 2011, 2013 by 7# David Turner, Robert Wilhelm, and Werner Lemberg. 8# 9# This file is part of the FreeType project, and may only be used, modified, 10# and distributed under the terms of the FreeType project license, 11# LICENSE.TXT. By continuing to use, modify, or distribute this file you 12# indicate that you have read the license and understand and accept it 13# fully. 14 15 16# AUTOF driver directory 17# 18AUTOF_DIR := $(SRC_DIR)/autofit 19 20 21# compilation flags for the driver 22# 23AUTOF_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(AUTOF_DIR)) 24 25 26# AUTOF driver sources (i.e., C files) 27# 28AUTOF_DRV_SRC := $(AUTOF_DIR)/afangles.c \ 29 $(AUTOF_DIR)/afblue.c \ 30 $(AUTOF_DIR)/afcjk.c \ 31 $(AUTOF_DIR)/afdummy.c \ 32 $(AUTOF_DIR)/afglobal.c \ 33 $(AUTOF_DIR)/afhints.c \ 34 $(AUTOF_DIR)/afindic.c \ 35 $(AUTOF_DIR)/aflatin.c \ 36 $(AUTOF_DIR)/afloader.c \ 37 $(AUTOF_DIR)/afmodule.c \ 38 $(AUTOF_DIR)/afpic.c \ 39 $(AUTOF_DIR)/afranges.c \ 40 $(AUTOF_DIR)/afwarp.c \ 41 $(AUTOF_DIR)/hbshim.c 42 43# AUTOF driver headers 44# 45AUTOF_DRV_H := $(AUTOF_DRV_SRC:%c=%h) \ 46 $(AUTOF_DIR)/afcover.h \ 47 $(AUTOF_DIR)/aferrors.h \ 48 $(AUTOF_DIR)/afscript.h \ 49 $(AUTOF_DIR)/afstyles.h \ 50 $(AUTOF_DIR)/aftypes.h \ 51 $(AUTOF_DIR)/afwrtsys.h 52 53 54# AUTOF driver object(s) 55# 56# AUTOF_DRV_OBJ_M is used during `multi' builds. 57# AUTOF_DRV_OBJ_S is used during `single' builds. 58# 59AUTOF_DRV_OBJ_M := $(AUTOF_DRV_SRC:$(AUTOF_DIR)/%.c=$(OBJ_DIR)/%.$O) 60AUTOF_DRV_OBJ_S := $(OBJ_DIR)/autofit.$O 61 62# AUTOF driver source file for single build 63# 64AUTOF_DRV_SRC_S := $(AUTOF_DIR)/autofit.c 65 66 67# AUTOF driver - single object 68# 69$(AUTOF_DRV_OBJ_S): $(AUTOF_DRV_SRC_S) $(AUTOF_DRV_SRC) \ 70 $(FREETYPE_H) $(AUTOF_DRV_H) 71 $(AUTOF_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(AUTOF_DRV_SRC_S)) 72 73 74# AUTOF driver - multiple objects 75# 76$(OBJ_DIR)/%.$O: $(AUTOF_DIR)/%.c $(FREETYPE_H) $(AUTOF_DRV_H) 77 $(AUTOF_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<) 78 79 80# update main driver object lists 81# 82DRV_OBJS_S += $(AUTOF_DRV_OBJ_S) 83DRV_OBJS_M += $(AUTOF_DRV_OBJ_M) 84 85 86# EOF 87