Imported Upstream version 2.10.4
[platform/upstream/freetype2.git] / src / type1 / rules.mk
1 #
2 # FreeType 2 Type1 driver configuration rules
3 #
4
5
6 # Copyright (C) 1996-2020 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 # Type1 driver directory
17 #
18 T1_DIR := $(SRC_DIR)/type1
19
20
21 # compilation flags for the driver
22 #
23 T1_COMPILE := $(CC) $(ANSIFLAGS)                           \
24                     $I$(subst /,$(COMPILER_SEP),$(T1_DIR)) \
25                     $(INCLUDE_FLAGS)                       \
26                     $(FT_CFLAGS)
27
28
29 # Type1 driver sources (i.e., C files)
30 #
31 T1_DRV_SRC := $(T1_DIR)/t1parse.c  \
32               $(T1_DIR)/t1load.c   \
33               $(T1_DIR)/t1driver.c \
34               $(T1_DIR)/t1afm.c    \
35               $(T1_DIR)/t1gload.c  \
36               $(T1_DIR)/t1objs.c
37
38 # Type1 driver headers
39 #
40 T1_DRV_H := $(T1_DRV_SRC:%.c=%.h) \
41             $(T1_DIR)/t1tokens.h  \
42             $(T1_DIR)/t1errors.h
43
44
45 # Type1 driver object(s)
46 #
47 #   T1_DRV_OBJ_M is used during `multi' builds
48 #   T1_DRV_OBJ_S is used during `single' builds
49 #
50 T1_DRV_OBJ_M := $(T1_DRV_SRC:$(T1_DIR)/%.c=$(OBJ_DIR)/%.$O)
51 T1_DRV_OBJ_S := $(OBJ_DIR)/type1.$O
52
53 # Type1 driver source file for single build
54 #
55 T1_DRV_SRC_S := $(T1_DIR)/type1.c
56
57
58 # Type1 driver - single object
59 #
60 $(T1_DRV_OBJ_S): $(T1_DRV_SRC_S) $(T1_DRV_SRC) $(FREETYPE_H) $(T1_DRV_H)
61         $(T1_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(T1_DRV_SRC_S))
62
63
64 # Type1 driver - multiple objects
65 #
66 $(OBJ_DIR)/%.$O: $(T1_DIR)/%.c $(FREETYPE_H) $(T1_DRV_H)
67         $(T1_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
68
69
70 # update main driver object lists
71 #
72 DRV_OBJS_S += $(T1_DRV_OBJ_S)
73 DRV_OBJS_M += $(T1_DRV_OBJ_M)
74
75
76 # EOF