Bringing apdf from vendor into main branch.
[AROS-Contrib.git] / apdf / freetype2 / smooth / rules.mk
blob457f1e5f4e48331a53712307f84cee7462d92288
2 # FreeType 2 smooth renderer module build rules
6 # Copyright 1996-2000, 2001 by
7 # David Turner, Robert Wilhelm, and Werner Lemberg.
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.
16 # smooth driver directory
18 SMOOTH_DIR := $(SRC_)smooth
19 SMOOTH_DIR_ := $(SMOOTH_DIR)$(SEP)
21 # compilation flags for the driver
23 SMOOTH_COMPILE := $(FT_COMPILE) $I$(SMOOTH_DIR)
26 # smooth driver sources (i.e., C files)
28 SMOOTH_DRV_SRC := $(SMOOTH_DIR_)ftgrays.c \
29 $(SMOOTH_DIR_)ftsmooth.c
32 # smooth driver headers
34 SMOOTH_DRV_H := $(SMOOTH_DRV_SRC:%c=%h) \
35 $(SMOOTH_DIR_)ftsmerrs.h
38 # smooth driver object(s)
40 # SMOOTH_DRV_OBJ_M is used during `multi' builds.
41 # SMOOTH_DRV_OBJ_S is used during `single' builds.
43 SMOOTH_DRV_OBJ_M := $(SMOOTH_DRV_SRC:$(SMOOTH_DIR_)%.c=$(OBJ_)%.$O)
44 SMOOTH_DRV_OBJ_S := $(OBJ_)smooth.$O
46 # smooth driver source file for single build
48 SMOOTH_DRV_SRC_S := $(SMOOTH_DIR_)smooth.c
51 # smooth driver - single object
53 $(SMOOTH_DRV_OBJ_S): $(SMOOTH_DRV_SRC_S) $(SMOOTH_DRV_SRC) \
54 $(FREETYPE_H) $(SMOOTH_DRV_H)
55 $(SMOOTH_COMPILE) $T$@ $(SMOOTH_DRV_SRC_S)
58 # smooth driver - multiple objects
60 $(OBJ_)%.$O: $(SMOOTH_DIR_)%.c $(FREETYPE_H) $(SMOOTH_DRV_H)
61 $(SMOOTH_COMPILE) $T$@ $<
64 # update main driver object lists
66 DRV_OBJS_S += $(SMOOTH_DRV_OBJ_S)
67 DRV_OBJS_M += $(SMOOTH_DRV_OBJ_M)
70 # EOF