Imported Upstream version 2.13.2
[platform/upstream/freetype2.git] / src / pfr / rules.mk
1 #
2 # FreeType 2 PFR driver configuration rules
3 #
4
5
6 # Copyright (C) 2002-2023 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 # pfr driver directory
17 #
18 PFR_DIR := $(SRC_DIR)/pfr
19
20
21 # compilation flags for the driver
22 #
23 PFR_COMPILE := $(CC) $(ANSIFLAGS)                            \
24                      $I$(subst /,$(COMPILER_SEP),$(PFR_DIR)) \
25                      $(INCLUDE_FLAGS)                        \
26                      $(FT_CFLAGS)
27
28
29 # pfr driver sources (i.e., C files)
30 #
31 PFR_DRV_SRC := $(PFR_DIR)/pfrload.c  \
32                $(PFR_DIR)/pfrgload.c \
33                $(PFR_DIR)/pfrcmap.c  \
34                $(PFR_DIR)/pfrdrivr.c \
35                $(PFR_DIR)/pfrsbit.c  \
36                $(PFR_DIR)/pfrobjs.c
37
38 # pfr driver headers
39 #
40 PFR_DRV_H := $(PFR_DRV_SRC:%.c=%.h) \
41              $(PFR_DIR)/pfrerror.h  \
42              $(PFR_DIR)/pfrtypes.h
43
44
45 # Pfr driver object(s)
46 #
47 #   PFR_DRV_OBJ_M is used during `multi' builds
48 #   PFR_DRV_OBJ_S is used during `single' builds
49 #
50 PFR_DRV_OBJ_M := $(PFR_DRV_SRC:$(PFR_DIR)/%.c=$(OBJ_DIR)/%.$O)
51 PFR_DRV_OBJ_S := $(OBJ_DIR)/pfr.$O
52
53 # pfr driver source file for single build
54 #
55 PFR_DRV_SRC_S := $(PFR_DIR)/pfr.c
56
57
58 # pfr driver - single object
59 #
60 $(PFR_DRV_OBJ_S): $(PFR_DRV_SRC_S) $(PFR_DRV_SRC) $(FREETYPE_H) $(PFR_DRV_H)
61         $(PFR_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(PFR_DRV_SRC_S))
62
63
64 # pfr driver - multiple objects
65 #
66 $(OBJ_DIR)/%.$O: $(PFR_DIR)/%.c $(FREETYPE_H) $(PFR_DRV_H)
67         $(PFR_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
68
69
70 # update main driver object lists
71 #
72 DRV_OBJS_S += $(PFR_DRV_OBJ_S)
73 DRV_OBJS_M += $(PFR_DRV_OBJ_M)
74
75
76 # EOF