| 1 | /***************************************************************************/ |
| 2 | /* */ |
| 3 | /* sfnt.c */ |
| 4 | /* */ |
| 5 | /* Single object library component. */ |
| 6 | /* */ |
| 7 | /* Copyright 1996-2000 by */ |
| 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ |
| 9 | /* */ |
| 10 | /* This file is part of the FreeType project, and may only be used, */ |
| 11 | /* modified, and distributed under the terms of the FreeType project */ |
| 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ |
| 13 | /* this file you indicate that you have read the license and */ |
| 14 | /* understand and accept it fully. */ |
| 15 | /* */ |
| 16 | /***************************************************************************/ |
| 17 | |
| 18 | |
| 19 | #define FT_MAKE_OPTION_SINGLE_OBJECT |
| 20 | |
| 21 | |
| 22 | #ifdef FT_FLAT_COMPILE |
| 23 | |
| 24 | #include "ttload.c" |
| 25 | #include "ttcmap.c" |
| 26 | #include "sfobjs.c" |
| 27 | |
| 28 | #ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS |
| 29 | #include "ttsbit.c" |
| 30 | #endif |
| 31 | |
| 32 | #ifdef TT_CONFIG_OPTION_POSTSCRIPT_NAMES |
| 33 | #include "ttpost.c" |
| 34 | #endif |
| 35 | |
| 36 | #include "sfdriver.c" |
| 37 | |
| 38 | #else /* FT_FLAT_COMPILE */ |
| 39 | |
| 40 | #include <sfnt/ttload.c> |
| 41 | #include <sfnt/ttcmap.c> |
| 42 | #include <sfnt/sfobjs.c> |
| 43 | |
| 44 | #ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS |
| 45 | #include <sfnt/ttsbit.c> |
| 46 | #endif |
| 47 | |
| 48 | #ifdef TT_CONFIG_OPTION_POSTSCRIPT_NAMES |
| 49 | #include <sfnt/ttpost.c> |
| 50 | #endif |
| 51 | |
| 52 | #include <sfnt/sfdriver.c> |
| 53 | |
| 54 | #endif /* FT_FLAT_COMPILE */ |
| 55 | |
| 56 | |
| 57 | /* END */ |