mgh: fix for default HDD DMA mode, that wasn't correctly set
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / src / autofit / rules.mk
blob017489d9e0a21b21c6433f35d52b641426fa8e79
2 # FreeType 2 auto-fitter module configuration rules
6 # Copyright 2003, 2004, 2005, 2006, 2007 by
7 # David Turner, Robert Wilhelm, and Werner Lemberg.
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.
16 # AUTOF driver directory
18 AUTOF_DIR := $(SRC_DIR)/autofit
21 # compilation flags for the driver
23 AUTOF_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(AUTOF_DIR))
26 # AUTOF driver sources (i.e., C files)
28 AUTOF_DRV_SRC := $(AUTOF_DIR)/afangles.c \
29 $(AUTOF_DIR)/afcjk.c \
30 $(AUTOF_DIR)/afdummy.c \
31 $(AUTOF_DIR)/afglobal.c \
32 $(AUTOF_DIR)/afhints.c \
33 $(AUTOF_DIR)/afindic.c \
34 $(AUTOF_DIR)/aflatin.c \
35 $(AUTOF_DIR)/afloader.c \
36 $(AUTOF_DIR)/afmodule.c \
37 $(AUTOF_DIR)/afwarp.c
39 # AUTOF driver headers
41 AUTOF_DRV_H := $(AUTOF_DRV_SRC:%c=%h) \
42 $(AUTOF_DIR)/aftypes.h \
43 $(AUTOF_DIR)/aferrors.h
46 # AUTOF driver object(s)
48 # AUTOF_DRV_OBJ_M is used during `multi' builds.
49 # AUTOF_DRV_OBJ_S is used during `single' builds.
51 AUTOF_DRV_OBJ_M := $(AUTOF_DRV_SRC:$(AUTOF_DIR)/%.c=$(OBJ_DIR)/%.$O)
52 AUTOF_DRV_OBJ_S := $(OBJ_DIR)/autofit.$O
54 # AUTOF driver source file for single build
56 AUTOF_DRV_SRC_S := $(AUTOF_DIR)/autofit.c
59 # AUTOF driver - single object
61 $(AUTOF_DRV_OBJ_S): $(AUTOF_DRV_SRC_S) $(AUTOF_DRV_SRC) \
62 $(FREETYPE_H) $(AUTOF_DRV_H)
63 $(AUTOF_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(AUTOF_DRV_SRC_S))
66 # AUTOF driver - multiple objects
68 $(OBJ_DIR)/%.$O: $(AUTOF_DIR)/%.c $(FREETYPE_H) $(AUTOF_DRV_H)
69 $(AUTOF_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
72 # update main driver object lists
74 DRV_OBJS_S += $(AUTOF_DRV_OBJ_S)
75 DRV_OBJS_M += $(AUTOF_DRV_OBJ_M)
78 # EOF