Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / src / pfr / rules.mk
blob60b96c74154d7a42eae70f5a5899fbadec9a2c94
2 # FreeType 2 PFR driver configuration rules
6 # Copyright 2002, 2003 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 # pfr driver directory
18 PFR_DIR := $(SRC_DIR)/pfr
21 # compilation flags for the driver
23 PFR_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(PFR_DIR))
26 # pfr driver sources (i.e., C files)
28 PFR_DRV_SRC := $(PFR_DIR)/pfrload.c \
29 $(PFR_DIR)/pfrgload.c \
30 $(PFR_DIR)/pfrcmap.c \
31 $(PFR_DIR)/pfrdrivr.c \
32 $(PFR_DIR)/pfrsbit.c \
33 $(PFR_DIR)/pfrobjs.c
35 # pfr driver headers
37 PFR_DRV_H := $(PFR_DRV_SRC:%.c=%.h) \
38 $(PFR_DIR)/pfrerror.h \
39 $(PFR_DIR)/pfrtypes.h
42 # Pfr driver object(s)
44 # PFR_DRV_OBJ_M is used during `multi' builds
45 # PFR_DRV_OBJ_S is used during `single' builds
47 PFR_DRV_OBJ_M := $(PFR_DRV_SRC:$(PFR_DIR)/%.c=$(OBJ_DIR)/%.$O)
48 PFR_DRV_OBJ_S := $(OBJ_DIR)/pfr.$O
50 # pfr driver source file for single build
52 PFR_DRV_SRC_S := $(PFR_DIR)/pfr.c
55 # pfr driver - single object
57 $(PFR_DRV_OBJ_S): $(PFR_DRV_SRC_S) $(PFR_DRV_SRC) $(FREETYPE_H) $(PFR_DRV_H)
58 $(PFR_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(PFR_DRV_SRC_S))
61 # pfr driver - multiple objects
63 $(OBJ_DIR)/%.$O: $(PFR_DIR)/%.c $(FREETYPE_H) $(PFR_DRV_H)
64 $(PFR_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
67 # update main driver object lists
69 DRV_OBJS_S += $(PFR_DRV_OBJ_S)
70 DRV_OBJS_M += $(PFR_DRV_OBJ_M)
73 # EOF