Edit

kc3-lang/freetype/src/bdf/rules.mk

Branch :

  • Show log

    Commit

  • Author : Werner Lemberg
    Date : 2002-05-21 14:13:01
    Hash : 7cf4d377
    Message : * src/type42/t42drivr.c: s/T42_ENCODING_TYPE_/T1_ENCODING_TYPE_/. (parse_font_matrix): Remove unnecessary code. (parse_sfnts): Initialize some variables. (t42_driver_class) [TT_CONFIG_OPTION_BYTECODE_INTERPRETER]: Use ft_module_driver_has_hinter conditionally. Moved some type 42 specific structure definitions to... * include/freetype/internal/t42types.h: New file. * include/freetype/internal/internal.h (FT_INTERNAL_T42_TYPES_H): New macro. * include/freetype/cache/ftcsbits.h (FTC_SBit): Added a new field `num_grays' for specifying the number of used gray levels. * src/cache/ftcsbits.c (ftc_sbit_node_load): Initialize it. Adding a driver for BDF fonts written by Francesco Zappa Nardelli <Francesco.Zappa.Nardelli@ens.fr>. Heavily modified by me to better adapt it to FreeType, removing unneeded stuff. Additionally, it now supports Mark Leisher's BDF extension for anti-aliased bitmap glyphs with 2 and 4 bpp. * src/bdf/*: New driver. * include/freetype/internal/bdftypes.h: New file. * include/freetype/internal/fttrace.h: Added BDF driver components. * include/freetype/fterrdef.h: Added error codes for BDF driver. * include/freetype/config/ftmodule.h, src/Jamfile: Updated. * include/freetype/internal/internal.h (FT_INTERNAL_BDF_TYPES_H): New macro. * include/freetype/config/ftstdlib.h (ft_sprintf): New alias for sprintf. * include/freetype/internal/fttrace.h: Added Type 42 driver component. * src/type42/t42drivr.c: Use it. * include/freetype/internal/internal.h (FT_INTERNAL_PCF_TYPES_H): New macro.

  • src/bdf/rules.mk
  • #
    # FreeType 2 bdf driver configuration rules
    #
    
    
    # Copyright (C) 2001, 2002 by
    # Francesco Zappa Nardelli
    #
    # Permission is hereby granted, free of charge, to any person obtaining a copy
    # of this software and associated documentation files (the "Software"), to deal
    # in the Software without restriction, including without limitation the rights
    # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    # copies of the Software, and to permit persons to whom the Software is
    # furnished to do so, subject to the following conditions:
    #
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    #
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    # THE SOFTWARE.
    
    
    
    
    # bdf driver directory
    #
    BDF_DIR  := $(SRC_)bdf
    BDF_DIR_ := $(BDF_DIR)$(SEP)
    
    
    BDF_COMPILE := $(FT_COMPILE) $I$(BDF_DIR)
    
    
    # bdf driver sources (i.e., C files)
    #
    BDF_DRV_SRC := $(BDF_DIR_)bdflib.c $(BDF_DIR_)bdfdrivr.c
    
    
    # bdf driver headers
    #
    BDF_DRV_H := $(BDF_DIR_)bdf.h \
                 $(BDF_DIR_)bdfdrivr.h
    
    # bdf driver object(s)
    #
    #   BDF_DRV_OBJ_M is used during `multi' builds
    #   BDF_DRV_OBJ_S is used during `single' builds
    #
    BDF_DRV_OBJ_M := $(BDF_DRV_SRC:$(BDF_DIR_)%.c=$(OBJ_)%.$O)
    BDF_DRV_OBJ_S := $(OBJ_)bdf.$O
    
    # bdf driver source file for single build
    #
    BDF_DRV_SRC_S := $(BDF_DIR_)bdf.c
    
    
    # bdf driver - single object
    #
    $(BDF_DRV_OBJ_S): $(BDF_DRV_SRC_S) $(BDF_DRV_SRC) $(FREETYPE_H) $(BDF_DRV_H)
    	$(BDF_COMPILE) $T$@ $(BDF_DRV_SRC_S)
    
    
    # bdf driver - multiple objects
    #
    $(OBJ_)%.$O: $(BDF_DIR_)%.c $(FREETYPE_H) $(BDF_DRV_H)
    	$(BDF_COMPILE) $T$@ $<
    
    
    # update main driver object lists
    #
    DRV_OBJS_S += $(BDF_DRV_OBJ_S)
    DRV_OBJS_M += $(BDF_DRV_OBJ_M)
    
    # EOF