• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# FreeType 2 renderer module build rules
3#
4
5
6# Copyright (C) 1996-2020 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# raster driver directory
17#
18RASTER_DIR := $(SRC_DIR)/raster
19
20# compilation flags for the driver
21#
22RASTER_COMPILE := $(CC) $(ANSIFLAGS)                               \
23                        $I$(subst /,$(COMPILER_SEP),$(RASTER_DIR)) \
24                        $(INCLUDE_FLAGS)                           \
25                        $(FT_CFLAGS)
26
27
28# raster driver sources (i.e., C files)
29#
30RASTER_DRV_SRC := $(RASTER_DIR)/ftraster.c \
31                  $(RASTER_DIR)/ftrend1.c
32
33
34# raster driver headers
35#
36RASTER_DRV_H := $(RASTER_DRV_SRC:%.c=%.h) \
37                $(RASTER_DIR)/rasterrs.h
38
39
40# raster driver object(s)
41#
42#   RASTER_DRV_OBJ_M is used during `multi' builds.
43#   RASTER_DRV_OBJ_S is used during `single' builds.
44#
45RASTER_DRV_OBJ_M := $(RASTER_DRV_SRC:$(RASTER_DIR)/%.c=$(OBJ_DIR)/%.$O)
46RASTER_DRV_OBJ_S := $(OBJ_DIR)/raster.$O
47
48# raster driver source file for single build
49#
50RASTER_DRV_SRC_S := $(RASTER_DIR)/raster.c
51
52
53# raster driver - single object
54#
55$(RASTER_DRV_OBJ_S): $(RASTER_DRV_SRC_S) $(RASTER_DRV_SRC) \
56                     $(FREETYPE_H) $(RASTER_DRV_H)
57	$(RASTER_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(RASTER_DRV_SRC_S))
58
59
60# raster driver - multiple objects
61#
62$(OBJ_DIR)/%.$O: $(RASTER_DIR)/%.c $(FREETYPE_H) $(RASTER_DRV_H)
63	$(RASTER_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
64
65
66# update main driver object lists
67#
68DRV_OBJS_S += $(RASTER_DRV_OBJ_S)
69DRV_OBJS_M += $(RASTER_DRV_OBJ_M)
70
71
72# EOF
73