Edit

kc3-lang/freetype/src/cache/descrip.mms

Branch :

  • Show log

    Commit

  • Author : Werner Lemberg
    Date : 2002-03-30 16:41:09
    Hash : 48c984b5
    Message : * src/cff/cffdrivr.c (cff_get_glyph_name): Fix debug message. * src/cff/cffobjs.c (CFF_Driver_Init, CFF_Driver_Done) [TT_CONFIG_OPTION_EXTEND_ENGINE]: Removed. * src/cff/sfobjs.c (SFNT_Load_Face) [TT_CONFIG_OPTION_EXTEND_ENGINE]: Ditto. * src/truetype/ttobjs.c (TT_Init_Driver, TT_Done_Driver) [TT_CONFIG_OPTION_EXTEND_ENGINE]: Ditto. * src/truetype/ttdriver.c, src/truetype/ttobjs.c, src/truetype/ttobjs.h: Renaming driver functions to the FT_<Subject>_<Action> scheme: TT_Init_Driver => TT_Driver_Init TT_Done_Driver => TT_Driver_Done TT_Init_Face => TT_Face_Init TT_Done_Face => TT_Face_Done TT_Init_Size => TT_Size_Init TT_Done_Size => TT_Size_Done TT_Reset_Size => TT_Size_Reset

  • src/cache/descrip.mms
  • #
    # FreeType 2 Cache compilation rules for VMS
    #
    
    
    # Copyright 2001, 2002 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.
    
    
    CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=([--.include],[--.src.cache])
    
    OBJS=ftcache.obj
    
    all : $(OBJS)
            library [--.lib]freetype.olb $(OBJS)
    
    ftcache.obj : ftcache.c ftlru.c ftcmanag.c ftccache.c ftcglyph.c ftcimage.c \
                  ftcsbits.c ftccmap.c 
    
    # EOF