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