1# 2# FreeType 2 TrueType driver configuration rules 3# 4 5 6# Copyright 1996-2018 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# TrueType driver directory 17# 18TT_DIR := $(SRC_DIR)/truetype 19 20 21# compilation flags for the driver 22# 23TT_COMPILE := $(CC) $(ANSIFLAGS) \ 24 $I$(subst /,$(COMPILER_SEP),$(TT_DIR)) \ 25 $(INCLUDE_FLAGS) \ 26 $(FT_CFLAGS) 27 28 29# TrueType driver sources (i.e., C files) 30# 31TT_DRV_SRC := $(TT_DIR)/ttdriver.c \ 32 $(TT_DIR)/ttgload.c \ 33 $(TT_DIR)/ttgxvar.c \ 34 $(TT_DIR)/ttinterp.c \ 35 $(TT_DIR)/ttobjs.c \ 36 $(TT_DIR)/ttpload.c \ 37 $(TT_DIR)/ttsubpix.c 38 39# TrueType driver headers 40# 41TT_DRV_H := $(TT_DRV_SRC:%.c=%.h) \ 42 $(TT_DIR)/tterrors.h 43 44 45# TrueType driver object(s) 46# 47# TT_DRV_OBJ_M is used during `multi' builds 48# TT_DRV_OBJ_S is used during `single' builds 49# 50TT_DRV_OBJ_M := $(TT_DRV_SRC:$(TT_DIR)/%.c=$(OBJ_DIR)/%.$O) 51TT_DRV_OBJ_S := $(OBJ_DIR)/truetype.$O 52 53# TrueType driver source file for single build 54# 55TT_DRV_SRC_S := $(TT_DIR)/truetype.c 56 57 58# TrueType driver - single object 59# 60$(TT_DRV_OBJ_S): $(TT_DRV_SRC_S) $(TT_DRV_SRC) $(FREETYPE_H) $(TT_DRV_H) 61 $(TT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(TT_DRV_SRC_S)) 62 63 64# driver - multiple objects 65# 66$(OBJ_DIR)/%.$O: $(TT_DIR)/%.c $(FREETYPE_H) $(TT_DRV_H) 67 $(TT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<) 68 69 70# update main driver object lists 71# 72DRV_OBJS_S += $(TT_DRV_OBJ_S) 73DRV_OBJS_M += $(TT_DRV_OBJ_M) 74 75 76# EOF 77