summaryrefslogtreecommitdiff
path: root/src/gxlayout/rules.mk
blob: 035863b3563396dae338ed5bcb1223613138ff52 (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
#
# FreeType 2 AAT/TrueTypeGX 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.   

# AAT/TrueTypeGX driver directory
#
GX_DIR := $(SRC_DIR)/gxlayout


GX_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(GX_DIR))


# GX driver sources (i.e., C files)
#
GX_DRV_SRC :=  $(GX_DIR)/gxobjs.c		\
               $(GX_DIR)/gxload.c		\
               $(GX_DIR)/gxdriver.c		\
               $(GX_DIR)/gxlookuptbl.c		\
               $(GX_DIR)/gxstatetbl.c		\
               $(GX_DIR)/gxutils.c		\
	       $(GX_DIR)/gxlayout.c		\
               $(GX_DIR)/gxfeatreg.c		\
	       $(GX_DIR)/gxlfeatreg.c		\
               $(GX_DIR)/gxaccess.c             \
               $(GX_DIR)/gxvm.c                 \
               $(GX_DIR)/gxdump.c              

# GX driver headers
#
GX_DRV_H := $(GX_DIR)/gxdriver.h		\
            $(GX_DIR)/gxload.h			\
	    $(GX_DIR)/gxlookuptbl.h		\
	    $(GX_DIR)/gxobjs.h			\
            $(GX_DIR)/gxstatetbl.h		\
            $(GX_DIR)/gxutils.h			\
	    $(GX_DIR)/gxfeatreg.h		\
	    $(GX_DIR)/gxlfeatreg.h		\
            $(GX_DIR)/gxaccess.h                \
	    $(GX_DIR)/gxerrors.h                \
            $(GX_DIR)/gxvm.h                    \
	    $(GX_DIR)/gxdump.h              

# GX driver object(s)
#
#   GX_DRV_OBJ_M is used during `multi' builds
#   GX_DRV_OBJ_S is used during `single' builds
#
GX_DRV_OBJ_M := $(GX_DRV_SRC:$(GX_DIR)/%.c=$(OBJ_DIR)/%.$O)
GX_DRV_OBJ_S := $(OBJ_DIR)/gx.$O

# GX driver source file for single build
#
GX_DRV_SRC_S := $(GX_DIR)/gx.c


# GX driver - single object
#
$(GX_DRV_OBJ_S): $(GX_DRV_SRC_S) $(GX_DRV_SRC) $(FREETYPE_H) $(GX_DRV_H)
	$(GX_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(GX_DRV_SRC_S))


# GX driver - multiple objects
#
$(OBJ_DIR)/%.$O: $(GX_DIR)/%.c $(FREETYPE_H) $(GX_DRV_H)
	$(GX_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)


# update main driver object lists
#
DRV_OBJS_S += $(GX_DRV_OBJ_S)
DRV_OBJS_M += $(GX_DRV_OBJ_M)


# EOF