]> git.saurik.com Git - wxWidgets.git/blame - src/freetype/smooth/rules.mk
added common notebookbase source file
[wxWidgets.git] / src / freetype / smooth / rules.mk
CommitLineData
cabec872
RR
1#
2# FreeType 2 renderer module build rules
3#
4
5
6# Copyright 1996-2000 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_)smooth
19SMOOTH_DIR_ := $(SMOOTH_DIR)$(SEP)
20
21# compilation flags for the driver
22#
23SMOOTH_COMPILE := $(FT_COMPILE)
24
25
26# smooth driver sources (i.e., C files)
27#
28SMOOTH_DRV_SRC := $(SMOOTH_DIR_)ftgrays.c \
29 $(SMOOTH_DIR_)ftsmooth.c
30
31
32# smooth driver headers
33#
34SMOOTH_DRV_H := $(SMOOTH_DRV_SRC:%c=%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#
42SMOOTH_DRV_OBJ_M := $(SMOOTH_DRV_SRC:$(SMOOTH_DIR_)%.c=$(OBJ_)%.$O)
43SMOOTH_DRV_OBJ_S := $(OBJ_)smooth.$O
44
45# smooth driver source file for single build
46#
47SMOOTH_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$@ $(SMOOTH_DRV_SRC_S)
55
56
57# smooth driver - multiple objects
58#
59$(OBJ_)%.$O: $(SMOOTH_DIR_)%.c $(FREETYPE_H) $(SMOOTH_DRV_H)
60 $(SMOOTH_COMPILE) $T$@ $<
61
62
63# update main driver object lists
64#
65DRV_OBJS_S += $(SMOOTH_DRV_OBJ_S)
66DRV_OBJS_M += $(SMOOTH_DRV_OBJ_M)
67
68
69# EOF