xref: /inferno-os/libfreetype/type1.c (revision 37da2899f40661e3e9631e497da8dc59b971cbd0)
1*37da2899SCharles.Forsyth /***************************************************************************/
2*37da2899SCharles.Forsyth /*                                                                         */
3*37da2899SCharles.Forsyth /*  type1.c                                                                */
4*37da2899SCharles.Forsyth /*                                                                         */
5*37da2899SCharles.Forsyth /*    FreeType Type 1 driver component (body only).                        */
6*37da2899SCharles.Forsyth /*                                                                         */
7*37da2899SCharles.Forsyth /*  Copyright 1996-2001 by                                                 */
8*37da2899SCharles.Forsyth /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
9*37da2899SCharles.Forsyth /*                                                                         */
10*37da2899SCharles.Forsyth /*  This file is part of the FreeType project, and may only be used,       */
11*37da2899SCharles.Forsyth /*  modified, and distributed under the terms of the FreeType project      */
12*37da2899SCharles.Forsyth /*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
13*37da2899SCharles.Forsyth /*  this file you indicate that you have read the license and              */
14*37da2899SCharles.Forsyth /*  understand and accept it fully.                                        */
15*37da2899SCharles.Forsyth /*                                                                         */
16*37da2899SCharles.Forsyth /***************************************************************************/
17*37da2899SCharles.Forsyth 
18*37da2899SCharles.Forsyth 
19*37da2899SCharles.Forsyth #define FT_MAKE_OPTION_SINGLE_OBJECT
20*37da2899SCharles.Forsyth 
21*37da2899SCharles.Forsyth #include <ft2build.h>
22*37da2899SCharles.Forsyth #include "t1parse.c"
23*37da2899SCharles.Forsyth #include "t1load.c"
24*37da2899SCharles.Forsyth #include "t1objs.c"
25*37da2899SCharles.Forsyth #include "t1driver.c"
26*37da2899SCharles.Forsyth #include "t1gload.c"
27*37da2899SCharles.Forsyth 
28*37da2899SCharles.Forsyth #ifndef T1_CONFIG_OPTION_NO_AFM
29*37da2899SCharles.Forsyth #include "t1afm.c"
30*37da2899SCharles.Forsyth #endif
31*37da2899SCharles.Forsyth 
32*37da2899SCharles.Forsyth 
33*37da2899SCharles.Forsyth /* END */
34