summaryrefslogtreecommitdiff
path: root/src/otlayout/rules.mk
blob: ef223f85c3d0a821e85fe57bfe7ae6655f6a0b4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#
# FreeType 2 OpneType driver configuration rules
#

# Copyright 2004 by RedHat K.K.
# This file is derived from cff/rules.mk.

# ----------------------------------------------------------------------
#
# FreeType 2 OpenType/CFF driver configuration rules
#

# Copyright 1996-2000, 2001, 2003 by
# David Turner, Robert Wilhelm, and Werner Lemberg.
#
# This file is part of the FreeType project, and may only be used, modified,
# and distributed under the terms of the FreeType project license,
# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
# indicate that you have read the license and understand and accept it
# fully.
# ----------------------------------------------------------------------

# Development of the code in rules.mk is support of
# Information-technology Promotion Agency, Japan.   

# OpenType driver directory
#
OT_DIR := $(SRC_DIR)/otlayout


OT_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(OT_DIR))


# OT driver sources (i.e., C files)
#
OT_DRV_SRC :=  $(OT_DIR)/otobjs.c		\
	       $(OT_DIR)/otlayout.c             \
               $(OT_DIR)/otdriver.c		\
               $(OT_DIR)/ftxgdef.c              \
               $(OT_DIR)/ftxgpos.c   		\
               $(OT_DIR)/ftxopen.c		\
               $(OT_DIR)/ftxgsub.c		\
	       $(OT_DIR)/ot-info.c 		\
               $(OT_DIR)/ot-ruleset.c		\
	       $(OT_DIR)/ot-array.c             \
	       $(OT_DIR)/ot-unicode.c


# OT driver headers
#
OT_DRV_H := $(OT_DIR)/otdriver.h		\
	    $(OT_DIR)/fterrcompat.h		\
	    $(OT_DIR)/ftxgdef.h			\
            $(OT_DIR)/ftxgpos.h   		\
            $(OT_DIR)/ftxgsub.h			\
	    $(OT_DIR)/ftxopen.h  		\
	    $(OT_DIR)/ftxopenf.h  		\
            $(OT_DIR)/ot-info.h                 \
	    $(OT_DIR)/ot-ruleset.h              \
            $(OT_DIR)/ot-types.h                \
            $(OT_DIR)/ot-array.h                \
	    $(OT_DIR)/otltypes.h                \
	    $(OT_DIR)/oterrors.h                \
	    $(OT_DIR)/otobjs.h                  \
            $(OT_DIR)/ot-unicode.h

# OT driver object(s)
#
#   OT_DRV_OBJ_M is used during `multi' builds
#   OT_DRV_OBJ_S is used during `single' builds
#
OT_DRV_OBJ_M := $(OT_DRV_SRC:$(OT_DIR)/%.c=$(OBJ_DIR)/%.$O)
OT_DRV_OBJ_S := $(OBJ_DIR)/ot.$O

# OT driver source file for single build
#
OT_DRV_SRC_S := $(OT_DIR)/ot.c


# OT driver - single object
#
$(OT_DRV_OBJ_S): $(OT_DRV_SRC_S) $(OT_DRV_SRC) $(FREETYPE_H) $(OT_DRV_H)
	$(OT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(OT_DRV_SRC_S))


# OT driver - multiple objects
#
$(OBJ_DIR)/%.$O: $(OT_DIR)/%.c $(FREETYPE_H) $(OT_DRV_H)
	$(OT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)


# update main driver object lists
#
DRV_OBJS_S += $(OT_DRV_OBJ_S)
DRV_OBJS_M += $(OT_DRV_OBJ_M)


# EOF