2002-05-15 08:16:57 +02:00
|
|
|
#
|
|
|
|
# FreeType 2 Type42 driver configuration rules
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2022-01-11 10:54:10 +01:00
|
|
|
# Copyright (C) 2002-2022 by
|
2002-05-15 08:16:57 +02:00
|
|
|
# David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
|
|
#
|
|
|
|
# This file is part of the FreeType project, and may only be used, modified,
|
|
|
|
# and distributed under the terms of the FreeType project license,
|
|
|
|
# LICENSE.TXT. By continuing to use, modify, or distribute this file you
|
|
|
|
# indicate that you have read the license and understand and accept it
|
|
|
|
# fully.
|
|
|
|
|
|
|
|
|
|
|
|
# Type42 driver directory
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
T42_DIR := $(SRC_DIR)/type42
|
2002-05-15 08:16:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
# compilation flags for the driver
|
|
|
|
#
|
2015-01-12 11:26:30 +01:00
|
|
|
T42_COMPILE := $(CC) $(ANSIFLAGS) \
|
|
|
|
$I$(subst /,$(COMPILER_SEP),$(T42_DIR)) \
|
|
|
|
$(INCLUDE_FLAGS) \
|
|
|
|
$(FT_CFLAGS)
|
2002-05-15 08:16:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Type42 driver source
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
T42_DRV_SRC := $(T42_DIR)/t42objs.c \
|
|
|
|
$(T42_DIR)/t42parse.c \
|
|
|
|
$(T42_DIR)/t42drivr.c
|
2002-05-15 08:16:57 +02:00
|
|
|
|
|
|
|
# Type42 driver headers
|
|
|
|
#
|
2002-06-08 08:47:18 +02:00
|
|
|
T42_DRV_H := $(T42_DRV_SRC:%.c=%.h) \
|
2008-10-02 08:48:10 +02:00
|
|
|
$(T42_DIR)/t42error.h \
|
|
|
|
$(T42_DIR)/t42types.h
|
2002-05-15 08:16:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Type42 driver object(s)
|
|
|
|
#
|
|
|
|
# T42_DRV_OBJ_M is used during `multi' builds
|
|
|
|
# T42_DRV_OBJ_S is used during `single' builds
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
T42_DRV_OBJ_M := $(T42_DRV_SRC:$(T42_DIR)/%.c=$(OBJ_DIR)/%.$O)
|
|
|
|
T42_DRV_OBJ_S := $(OBJ_DIR)/type42.$O
|
2002-05-15 08:16:57 +02:00
|
|
|
|
|
|
|
# Type42 driver source file for single build
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
T42_DRV_SRC_S := $(T42_DIR)/type42.c
|
2002-05-15 08:16:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Type42 driver - single object
|
|
|
|
#
|
|
|
|
$(T42_DRV_OBJ_S): $(T42_DRV_SRC_S) $(T42_DRV_SRC) $(FREETYPE_H) $(T42_DRV_H)
|
2003-06-09 06:46:30 +02:00
|
|
|
$(T42_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(T42_DRV_SRC_S))
|
2002-05-15 08:16:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Type42 driver - multiple objects
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
$(OBJ_DIR)/%.$O: $(T42_DIR)/%.c $(FREETYPE_H) $(T42_DRV_H)
|
|
|
|
$(T42_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
|
2002-05-15 08:16:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
# update main driver object lists
|
|
|
|
#
|
|
|
|
DRV_OBJS_S += $(T42_DRV_OBJ_S)
|
|
|
|
DRV_OBJS_M += $(T42_DRV_OBJ_M)
|
|
|
|
|
2003-06-09 06:46:30 +02:00
|
|
|
|
2002-05-15 08:16:57 +02:00
|
|
|
# EOF
|