1INCLUDES = $(all_includes)
2METASOURCES = AUTO
3noinst_LTLIBRARIES = libftgl.la
4noinst_HEADERS = $(ftgl_headers)
5
6libftgl_la_CPPFLAGS = -IFTGlyph -IFTFont -IFTLayout
7libftgl_la_LDFLAGS = -avoid-version -no-undefined
8
9#libftgl_la_LIBADD = -l
10
11libftgl_la_SOURCES = \
12    FTBuffer.cpp \
13    FTCharmap.cpp \
14    FTCharmap.h \
15    FTCharToGlyphIndexMap.h \
16    FTContour.cpp \
17    FTContour.h \
18    FTFace.cpp \
19    FTFace.h \
20    FTGlyphContainer.cpp \
21    FTGlyphContainer.h \
22    FTInternals.h \
23    FTLibrary.cpp \
24    FTLibrary.h \
25    FTList.h \
26    FTPoint.cpp \
27    FTSize.cpp \
28    FTSize.h \
29    FTVector.h \
30    FTVectoriser.cpp \
31    FTVectoriser.h \
32    FTUnicode.h \
33    $(ftglyph_sources) \
34    $(ftfont_sources) \
35    $(ftlayout_sources) \
36    $(ftgl_headers) \
37    $(NULL)
38
39ftgl_headers = \
40    FTGL/ftgl.h \
41    FTGL/FTBBox.h \
42    FTGL/FTBuffer.h \
43    FTGL/FTPoint.h \
44    FTGL/FTGlyph.h \
45    FTGL/FTBitmapGlyph.h \
46    FTGL/FTBufferGlyph.h \
47    FTGL/FTExtrdGlyph.h \
48    FTGL/FTOutlineGlyph.h \
49    FTGL/FTPixmapGlyph.h \
50    FTGL/FTPolyGlyph.h \
51    FTGL/FTTextureGlyph.h \
52    FTGL/FTFont.h \
53    FTGL/FTGLBitmapFont.h \
54    FTGL/FTBufferFont.h \
55    FTGL/FTGLExtrdFont.h \
56    FTGL/FTGLOutlineFont.h \
57    FTGL/FTGLPixmapFont.h \
58    FTGL/FTGLPolygonFont.h \
59    FTGL/FTGLTextureFont.h \
60    FTGL/FTLayout.h \
61    FTGL/FTSimpleLayout.h \
62    ${NULL}
63
64ftglyph_sources = \
65    FTGlyph/FTGlyph.cpp \
66    FTGlyph/FTGlyphImpl.h \
67    FTGlyph/FTGlyphGlue.cpp \
68    FTGlyph/FTBitmapGlyph.cpp \
69    FTGlyph/FTBitmapGlyphImpl.h \
70    FTGlyph/FTBufferGlyph.cpp \
71    FTGlyph/FTBufferGlyphImpl.h \
72    FTGlyph/FTExtrudeGlyph.cpp \
73    FTGlyph/FTExtrudeGlyphImpl.h \
74    FTGlyph/FTOutlineGlyph.cpp \
75    FTGlyph/FTOutlineGlyphImpl.h \
76    FTGlyph/FTPixmapGlyph.cpp \
77    FTGlyph/FTPixmapGlyphImpl.h \
78    FTGlyph/FTPolygonGlyph.cpp \
79    FTGlyph/FTPolygonGlyphImpl.h \
80    FTGlyph/FTTextureGlyph.cpp \
81    FTGlyph/FTTextureGlyphImpl.h \
82    $(NULL)
83
84ftfont_sources = \
85    FTFont/FTFont.cpp \
86    FTFont/FTFontImpl.h \
87    FTFont/FTFontGlue.cpp \
88    FTFont/FTBitmapFont.cpp \
89    FTFont/FTBitmapFontImpl.h \
90    FTFont/FTBufferFont.cpp \
91    FTFont/FTBufferFontImpl.h \
92    FTFont/FTExtrudeFont.cpp \
93    FTFont/FTExtrudeFontImpl.h \
94    FTFont/FTOutlineFont.cpp \
95    FTFont/FTOutlineFontImpl.h \
96    FTFont/FTPixmapFont.cpp \
97    FTFont/FTPixmapFontImpl.h \
98    FTFont/FTPolygonFont.cpp \
99    FTFont/FTPolygonFontImpl.h \
100    FTFont/FTTextureFont.cpp \
101    FTFont/FTTextureFontImpl.h \
102    $(NULL)
103
104ftlayout_sources = \
105    FTLayout/FTLayout.cpp \
106    FTLayout/FTLayoutImpl.h \
107    FTLayout/FTLayoutGlue.cpp \
108    FTLayout/FTSimpleLayout.cpp \
109    FTLayout/FTSimpleLayoutImpl.h \
110    $(NULL)
111
112NULL =