1*37da2899SCharles.Forsyth /***************************************************************************/ 2*37da2899SCharles.Forsyth /* */ 3*37da2899SCharles.Forsyth /* autohint.c */ 4*37da2899SCharles.Forsyth /* */ 5*37da2899SCharles.Forsyth /* Automatic Hinting wrapper (body only). */ 6*37da2899SCharles.Forsyth /* */ 7*37da2899SCharles.Forsyth /* Copyright 2000-2001 Catharon Productions Inc. */ 8*37da2899SCharles.Forsyth /* Author: David Turner */ 9*37da2899SCharles.Forsyth /* */ 10*37da2899SCharles.Forsyth /* This file is part of the Catharon Typography Project and shall only */ 11*37da2899SCharles.Forsyth /* be used, modified, and distributed under the terms of the Catharon */ 12*37da2899SCharles.Forsyth /* Open Source License that should come with this file under the name */ 13*37da2899SCharles.Forsyth /* `CatharonLicense.txt'. By continuing to use, modify, or distribute */ 14*37da2899SCharles.Forsyth /* this file you indicate that you have read the license and */ 15*37da2899SCharles.Forsyth /* understand and accept it fully. */ 16*37da2899SCharles.Forsyth /* */ 17*37da2899SCharles.Forsyth /* Note that this license is compatible with the FreeType license. */ 18*37da2899SCharles.Forsyth /* */ 19*37da2899SCharles.Forsyth /***************************************************************************/ 20*37da2899SCharles.Forsyth 21*37da2899SCharles.Forsyth 22*37da2899SCharles.Forsyth #define FT_MAKE_OPTION_SINGLE_OBJECT 23*37da2899SCharles.Forsyth 24*37da2899SCharles.Forsyth #include <ft2build.h> 25*37da2899SCharles.Forsyth #include "ahangles.c" 26*37da2899SCharles.Forsyth #include "ahglyph.c" 27*37da2899SCharles.Forsyth #include "ahglobal.c" 28*37da2899SCharles.Forsyth #include "ahhint.c" 29*37da2899SCharles.Forsyth #include "ahmodule.c" 30*37da2899SCharles.Forsyth 31*37da2899SCharles.Forsyth 32*37da2899SCharles.Forsyth /* END */ 33