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

« back to all changes in this revision

Viewing changes to src/3rdparty/freetype/src/psnames/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 PSNames driver configuration rules
 
3
#
 
4
 
 
5
 
 
6
# Copyright 1996-2000, 2001, 2003 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
# PSNames driver directory
 
17
#
 
18
PSNAMES_DIR := $(SRC_DIR)/psnames
 
19
 
 
20
 
 
21
# compilation flags for the driver
 
22
#
 
23
PSNAMES_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(PSNAMES_DIR))
 
24
 
 
25
 
 
26
# PSNames driver sources (i.e., C files)
 
27
#
 
28
PSNAMES_DRV_SRC := $(PSNAMES_DIR)/psmodule.c
 
29
 
 
30
 
 
31
# PSNames driver headers
 
32
#
 
33
PSNAMES_DRV_H := $(PSNAMES_DRV_SRC:%.c=%.h) \
 
34
                 $(PSNAMES_DIR)/pstables.h  \
 
35
                 $(PSNAMES_DIR)/psnamerr.h
 
36
 
 
37
 
 
38
# PSNames driver object(s)
 
39
#
 
40
#   PSNAMES_DRV_OBJ_M is used during `multi' builds
 
41
#   PSNAMES_DRV_OBJ_S is used during `single' builds
 
42
#
 
43
PSNAMES_DRV_OBJ_M := $(PSNAMES_DRV_SRC:$(PSNAMES_DIR)/%.c=$(OBJ_DIR)/%.$O)
 
44
PSNAMES_DRV_OBJ_S := $(OBJ_DIR)/psnames.$O
 
45
 
 
46
# PSNames driver source file for single build
 
47
#
 
48
PSNAMES_DRV_SRC_S := $(PSNAMES_DIR)/psmodule.c
 
49
 
 
50
 
 
51
# PSNames driver - single object
 
52
#
 
53
$(PSNAMES_DRV_OBJ_S): $(PSNAMES_DRV_SRC_S) $(PSNAMES_DRV_SRC) \
 
54
                      $(FREETYPE_H) $(PSNAMES_DRV_H)
 
55
        $(PSNAMES_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(PSNAMES_DRV_SRC_S))
 
56
 
 
57
 
 
58
# PSNames driver - multiple objects
 
59
#
 
60
$(OBJ_DIR)/%.$O: $(PSNAMES_DIR)/%.c $(FREETYPE_H) $(PSNAMES_DRV_H)
 
61
        $(PSNAMES_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
 
62
 
 
63
 
 
64
# update main driver object lists
 
65
#
 
66
DRV_OBJS_S += $(PSNAMES_DRV_OBJ_S)
 
67
DRV_OBJS_M += $(PSNAMES_DRV_OBJ_M)
 
68
 
 
69
 
 
70
# EOF