~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/freetype/src/truetype/rules.mk

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# FreeType 2 TrueType driver configuration rules
 
3
#
 
4
 
 
5
 
 
6
# Copyright 1996-2000, 2001, 2003, 2004 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
# TrueType driver directory
 
17
#
 
18
TT_DIR := $(SRC_DIR)/truetype
 
19
 
 
20
 
 
21
# compilation flags for the driver
 
22
#
 
23
TT_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(TT_DIR))
 
24
 
 
25
 
 
26
# TrueType driver sources (i.e., C files)
 
27
#
 
28
TT_DRV_SRC := $(TT_DIR)/ttobjs.c   \
 
29
              $(TT_DIR)/ttpload.c  \
 
30
              $(TT_DIR)/ttgload.c  \
 
31
              $(TT_DIR)/ttinterp.c \
 
32
              $(TT_DIR)/ttgxvar.c \
 
33
              $(TT_DIR)/ttdriver.c
 
34
 
 
35
# TrueType driver headers
 
36
#
 
37
TT_DRV_H := $(TT_DRV_SRC:%.c=%.h) \
 
38
            $(TT_DIR)/tterrors.h
 
39
 
 
40
 
 
41
# TrueType driver object(s)
 
42
#
 
43
#   TT_DRV_OBJ_M is used during `multi' builds
 
44
#   TT_DRV_OBJ_S is used during `single' builds
 
45
#
 
46
TT_DRV_OBJ_M := $(TT_DRV_SRC:$(TT_DIR)/%.c=$(OBJ_DIR)/%.$O)
 
47
TT_DRV_OBJ_S := $(OBJ_DIR)/truetype.$O
 
48
 
 
49
# TrueType driver source file for single build
 
50
#
 
51
TT_DRV_SRC_S := $(TT_DIR)/truetype.c
 
52
 
 
53
 
 
54
# TrueType driver - single object
 
55
#
 
56
$(TT_DRV_OBJ_S): $(TT_DRV_SRC_S) $(TT_DRV_SRC) $(FREETYPE_H) $(TT_DRV_H)
 
57
        $(TT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(TT_DRV_SRC_S))
 
58
 
 
59
 
 
60
# driver - multiple objects
 
61
#
 
62
$(OBJ_DIR)/%.$O: $(TT_DIR)/%.c $(FREETYPE_H) $(TT_DRV_H)
 
63
        $(TT_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
 
64
 
 
65
 
 
66
# update main driver object lists
 
67
#
 
68
DRV_OBJS_S += $(TT_DRV_OBJ_S)
 
69
DRV_OBJS_M += $(TT_DRV_OBJ_M)
 
70
 
 
71
 
 
72
# EOF