~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/freetype/src/bdf/rules.mk

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# FreeType 2 bdf driver configuration rules
 
3
#
 
4
 
 
5
 
 
6
# Copyright (C) 2001, 2002, 2003, 2008 by
 
7
# Francesco Zappa Nardelli
 
8
#
 
9
# Permission is hereby granted, free of charge, to any person obtaining a copy
 
10
# of this software and associated documentation files (the "Software"), to deal
 
11
# in the Software without restriction, including without limitation the rights
 
12
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
13
# copies of the Software, and to permit persons to whom the Software is
 
14
# furnished to do so, subject to the following conditions:
 
15
#
 
16
# The above copyright notice and this permission notice shall be included in
 
17
# all copies or substantial portions of the Software.
 
18
#
 
19
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
20
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
21
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
 
22
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
23
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
24
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
25
# THE SOFTWARE.
 
26
 
 
27
 
 
28
 
 
29
 
 
30
# bdf driver directory
 
31
#
 
32
BDF_DIR := $(SRC_DIR)/bdf
 
33
 
 
34
 
 
35
BDF_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(BDF_DIR))
 
36
 
 
37
 
 
38
# bdf driver sources (i.e., C files)
 
39
#
 
40
BDF_DRV_SRC := $(BDF_DIR)/bdflib.c \
 
41
               $(BDF_DIR)/bdfdrivr.c
 
42
 
 
43
 
 
44
# bdf driver headers
 
45
#
 
46
BDF_DRV_H := $(BDF_DIR)/bdf.h \
 
47
             $(BDF_DIR)/bdfdrivr.h \
 
48
             $(BDF_DIR)/bdferror.h
 
49
 
 
50
# bdf driver object(s)
 
51
#
 
52
#   BDF_DRV_OBJ_M is used during `multi' builds
 
53
#   BDF_DRV_OBJ_S is used during `single' builds
 
54
#
 
55
BDF_DRV_OBJ_M := $(BDF_DRV_SRC:$(BDF_DIR)/%.c=$(OBJ_DIR)/%.$O)
 
56
BDF_DRV_OBJ_S := $(OBJ_DIR)/bdf.$O
 
57
 
 
58
# bdf driver source file for single build
 
59
#
 
60
BDF_DRV_SRC_S := $(BDF_DIR)/bdf.c
 
61
 
 
62
 
 
63
# bdf driver - single object
 
64
#
 
65
$(BDF_DRV_OBJ_S): $(BDF_DRV_SRC_S) $(BDF_DRV_SRC) $(FREETYPE_H) $(BDF_DRV_H)
 
66
        $(BDF_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(BDF_DRV_SRC_S))
 
67
 
 
68
 
 
69
# bdf driver - multiple objects
 
70
#
 
71
$(OBJ_DIR)/%.$O: $(BDF_DIR)/%.c $(FREETYPE_H) $(BDF_DRV_H)
 
72
        $(BDF_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
 
73
 
 
74
 
 
75
# update main driver object lists
 
76
#
 
77
DRV_OBJS_S += $(BDF_DRV_OBJ_S)
 
78
DRV_OBJS_M += $(BDF_DRV_OBJ_M)
 
79
 
 
80
 
 
81
# EOF