mgh: fix for default HDD DMA mode, that wasn't correctly set
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / src / raster / rules.mk
blob9703b1298a1670d94ede8f01485fc96f39c7002a
2 # FreeType 2 renderer module build rules
6 # Copyright 1996-2000, 2001, 2003, 2008, 2009 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 # raster driver directory
18 RASTER_DIR := $(SRC_DIR)/raster
20 # compilation flags for the driver
22 RASTER_COMPILE := $(FT_COMPILE) $I$(subst /,$(COMPILER_SEP),$(RASTER_DIR))
25 # raster driver sources (i.e., C files)
27 RASTER_DRV_SRC := $(RASTER_DIR)/ftraster.c \
28 $(RASTER_DIR)/ftrend1.c
31 # raster driver headers
33 RASTER_DRV_H := $(RASTER_DRV_SRC:%.c=%.h) \
34 $(RASTER_DIR)/rasterrs.h
37 # raster driver object(s)
39 # RASTER_DRV_OBJ_M is used during `multi' builds.
40 # RASTER_DRV_OBJ_S is used during `single' builds.
42 RASTER_DRV_OBJ_M := $(RASTER_DRV_SRC:$(RASTER_DIR)/%.c=$(OBJ_DIR)/%.$O)
43 RASTER_DRV_OBJ_S := $(OBJ_DIR)/raster.$O
45 # raster driver source file for single build
47 RASTER_DRV_SRC_S := $(RASTER_DIR)/raster.c
50 # raster driver - single object
52 $(RASTER_DRV_OBJ_S): $(RASTER_DRV_SRC_S) $(RASTER_DRV_SRC) \
53 $(FREETYPE_H) $(RASTER_DRV_H)
54 $(RASTER_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(RASTER_DRV_SRC_S))
57 # raster driver - multiple objects
59 $(OBJ_DIR)/%.$O: $(RASTER_DIR)/%.c $(FREETYPE_H) $(RASTER_DRV_H)
60 $(RASTER_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
63 # update main driver object lists
65 DRV_OBJS_S += $(RASTER_DRV_OBJ_S)
66 DRV_OBJS_M += $(RASTER_DRV_OBJ_M)
69 # EOF