update for HEAD-2003050101
[reactos.git] / lib / freetype / src / raster / rules.mk
1 #
2 # FreeType 2 renderer module build rules
3 #
4
5
6 # Copyright 1996-2000, 2001 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 # raster1 driver directory
17 #
18 RAS1_DIR  := $(SRC_)raster
19 RAS1_DIR_ := $(RAS1_DIR)$(SEP)
20
21 # compilation flags for the driver
22 #
23 RAS1_COMPILE := $(FT_COMPILE) $I$(RAS1_DIR)
24
25
26 # raster1 driver sources (i.e., C files)
27 #
28 RAS1_DRV_SRC := $(RAS1_DIR_)ftraster.c \
29                 $(RAS1_DIR_)ftrend1.c
30
31
32 # raster1 driver headers
33 #
34 RAS1_DRV_H := $(RAS1_DRV_SRC:%.c=%.h) \
35               $(RAS1_DIR_)rasterrs.h
36
37
38 # raster1 driver object(s)
39 #
40 #   RAS1_DRV_OBJ_M is used during `multi' builds.
41 #   RAS1_DRV_OBJ_S is used during `single' builds.
42 #
43 RAS1_DRV_OBJ_M := $(RAS1_DRV_SRC:$(RAS1_DIR_)%.c=$(OBJ_)%.$O)
44 RAS1_DRV_OBJ_S := $(OBJ_)raster.$O
45
46 # raster1 driver source file for single build
47 #
48 RAS1_DRV_SRC_S := $(RAS1_DIR_)raster.c
49
50
51 # raster1 driver - single object
52 #
53 $(RAS1_DRV_OBJ_S): $(RAS1_DRV_SRC_S) $(RAS1_DRV_SRC) \
54                    $(FREETYPE_H) $(RAS1_DRV_H)
55         $(RAS1_COMPILE) $T$@ $(RAS1_DRV_SRC_S)
56
57
58 # raster1 driver - multiple objects
59 #
60 $(OBJ_)%.$O: $(RAS1_DIR_)%.c $(FREETYPE_H) $(RAS1_DRV_H)
61         $(RAS1_COMPILE) $T$@ $<
62
63
64 # update main driver object lists
65 #
66 DRV_OBJS_S += $(RAS1_DRV_OBJ_S)
67 DRV_OBJS_M += $(RAS1_DRV_OBJ_M)
68
69
70 # EOF