4f27f01dba7cfbfc346cf7cde62e15ff19c31e58
[framework/graphics/freetype.git] / src / smooth / rules.mk
1 #
2 # FreeType 2 smooth renderer module build 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 # smooth driver directory
17 #
18 SMOOTH_DIR := $(SRC_DIR)/smooth
19
20 # compilation flags for the driver
21 #
22 SMOOTH_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(SMOOTH_DIR))
23
24
25 # smooth driver sources (i.e., C files)
26 #
27 SMOOTH_DRV_SRC := $(SMOOTH_DIR)/ftgrays.c  \
28                   $(SMOOTH_DIR)/ftsmooth.c
29
30
31 # smooth driver headers
32 #
33 SMOOTH_DRV_H := $(SMOOTH_DRV_SRC:%c=%h)  \
34                 $(SMOOTH_DIR)/ftsmerrs.h
35
36
37 # smooth driver object(s)
38 #
39 #   SMOOTH_DRV_OBJ_M is used during `multi' builds.
40 #   SMOOTH_DRV_OBJ_S is used during `single' builds.
41 #
42 SMOOTH_DRV_OBJ_M := $(SMOOTH_DRV_SRC:$(SMOOTH_DIR)/%.c=$(OBJ_DIR)/%.$O)
43 SMOOTH_DRV_OBJ_S := $(OBJ_DIR)/smooth.$O
44
45 # smooth driver source file for single build
46 #
47 SMOOTH_DRV_SRC_S := $(SMOOTH_DIR)/smooth.c
48
49
50 # smooth driver - single object
51 #
52 $(SMOOTH_DRV_OBJ_S): $(SMOOTH_DRV_SRC_S) $(SMOOTH_DRV_SRC) \
53                      $(FREETYPE_H) $(SMOOTH_DRV_H)
54         $(SMOOTH_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(SMOOTH_DRV_SRC_S))
55
56
57 # smooth driver - multiple objects
58 #
59 $(OBJ_DIR)/%.$O: $(SMOOTH_DIR)/%.c $(FREETYPE_H) $(SMOOTH_DRV_H)
60         $(SMOOTH_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
61
62
63 # update main driver object lists
64 #
65 DRV_OBJS_S += $(SMOOTH_DRV_OBJ_S)
66 DRV_OBJS_M += $(SMOOTH_DRV_OBJ_M)
67
68
69 # EOF