705bbe7c7b
NOTE: Does not compile! * src/cff/cffgload.c (CFF_Operator, CFF_COUNT_{CHECK_WIDTH,EXACT,CLEAR_STACK}, cff_argument_counts, cff_operator_seac, cff_compute_bias, cff_lookup_glyph_by_stdcharcode, cff_decoder_{parse_charstrings,init,prepare}): Move to... * src/psaux/cffdecode.c: This new file. * src/cff/cffgload.h: Move corresponding declarations to... * src/psaux/cffdecode.h: This new file. * src/cff/cffgload.h (CFF_MAX_{OPERANDS,SUBRS_CALLS,TRANS_ELEMENTS}, CFF_Decoder_Zone, CFF_Decoder): Move declarations to... * include/freetype/internal/psaux.h: Here. * src/psaux/cf2ft.h: Update include. * src/psaux/psaux.c, src/psaux/rules.mk (PSAUX_DRV_SRC): Update with the new file.
90 lines
2.5 KiB
Makefile
90 lines
2.5 KiB
Makefile
#
|
|
# FreeType 2 PSaux driver configuration rules
|
|
#
|
|
|
|
|
|
# Copyright 1996-2017 by
|
|
# 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.
|
|
|
|
|
|
# PSAUX driver directory
|
|
#
|
|
PSAUX_DIR := $(SRC_DIR)/psaux
|
|
|
|
|
|
# compilation flags for the driver
|
|
#
|
|
PSAUX_COMPILE := $(CC) $(ANSIFLAGS) \
|
|
$I$(subst /,$(COMPILER_SEP),$(PSAUX_DIR)) \
|
|
$(INCLUDE_FLAGS) \
|
|
$(FT_CFLAGS)
|
|
|
|
|
|
# PSAUX driver sources (i.e., C files)
|
|
#
|
|
PSAUX_DRV_SRC := $(PSAUX_DIR)/psobjs.c \
|
|
$(PSAUX_DIR)/t1decode.c \
|
|
$(PSAUX_DIR)/t1cmap.c \
|
|
$(PSAUX_DIR)/afmparse.c \
|
|
$(PSAUX_DIR)/psconv.c \
|
|
$(PSAUX_DIR)/psauxmod.c \
|
|
$(PSAUX_DIR)/cf2arrst.c \
|
|
$(PSAUX_DIR)/cf2blues.c \
|
|
$(PSAUX_DIR)/cf2error.c \
|
|
$(PSAUX_DIR)/cf2font.c \
|
|
$(PSAUX_DIR)/cf2ft.c \
|
|
$(PSAUX_DIR)/cf2hints.c \
|
|
$(PSAUX_DIR)/cf2intrp.c \
|
|
$(PSAUX_DIR)/cf2read.c \
|
|
$(PSAUX_DIR)/cf2stack.c \
|
|
$(PSAUX_DIR)/cffdecode.c
|
|
|
|
# PSAUX driver headers
|
|
#
|
|
PSAUX_DRV_H := $(PSAUX_DRV_SRC:%c=%h) \
|
|
$(PSAUX_DIR)/psauxerr.h \
|
|
$(PSAUX_DIR)/cf2fixed.h \
|
|
$(PSAUX_DIR)/cf2glue.h \
|
|
$(PSAUX_DIR)/cf2types.h
|
|
|
|
|
|
# PSAUX driver object(s)
|
|
#
|
|
# PSAUX_DRV_OBJ_M is used during `multi' builds.
|
|
# PSAUX_DRV_OBJ_S is used during `single' builds.
|
|
#
|
|
PSAUX_DRV_OBJ_M := $(PSAUX_DRV_SRC:$(PSAUX_DIR)/%.c=$(OBJ_DIR)/%.$O)
|
|
PSAUX_DRV_OBJ_S := $(OBJ_DIR)/psaux.$O
|
|
|
|
# PSAUX driver source file for single build
|
|
#
|
|
PSAUX_DRV_SRC_S := $(PSAUX_DIR)/psaux.c
|
|
|
|
|
|
# PSAUX driver - single object
|
|
#
|
|
$(PSAUX_DRV_OBJ_S): $(PSAUX_DRV_SRC_S) $(PSAUX_DRV_SRC) \
|
|
$(FREETYPE_H) $(PSAUX_DRV_H)
|
|
$(PSAUX_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $(PSAUX_DRV_SRC_S))
|
|
|
|
|
|
# PSAUX driver - multiple objects
|
|
#
|
|
$(OBJ_DIR)/%.$O: $(PSAUX_DIR)/%.c $(FREETYPE_H) $(PSAUX_DRV_H)
|
|
$(PSAUX_COMPILE) $T$(subst /,$(COMPILER_SEP),$@ $<)
|
|
|
|
|
|
# update main driver object lists
|
|
#
|
|
DRV_OBJS_S += $(PSAUX_DRV_OBJ_S)
|
|
DRV_OBJS_M += $(PSAUX_DRV_OBJ_M)
|
|
|
|
|
|
# EOF
|