Edit

kc3-lang/ftgl/src/Makefile.am

Branch :

  • Show log

    Commit

  • Author : sammy
    Date : 2008-04-04 12:43:38
    Hash : 7c358859
    Message : * Generate a config.h file instead of passing all defines in the compiler command line. * "make install" now properly installs the includes, the documentation and the .pc file. * Generate a shared library.

  • src/Makefile.am
  • lib_LTLIBRARIES = libftgl.la
    
    libftgl_la_SOURCES = \
    	FTBitmapGlyph.cpp \
    	FTCharmap.cpp \
    	FTContour.cpp \
    	FTExtrdGlyph.cpp \
    	FTFace.cpp \
    	FTFont.cpp \
    	FTGLBitmapFont.cpp \
    	FTGLExtrdFont.cpp \
    	FTGLOutlineFont.cpp \
    	FTGLPixmapFont.cpp \
    	FTGLPolygonFont.cpp \
    	FTGLTextureFont.cpp \
    	FTGlyph.cpp \
    	FTGlyphContainer.cpp \
    	FTLibrary.cpp \
    	FTOutlineGlyph.cpp \
    	FTPixmapGlyph.cpp \
    	FTPoint.cpp \
    	FTPolyGlyph.cpp \
    	FTSize.cpp \
    	FTTextureGlyph.cpp \
    	FTVectoriser.cpp \
    	$(ftgl_HEADERS)
    libftgl_la_CPPFLAGS = -I$(top_srcdir)/include
    libftgl_la_CXXFLAGS = $(FT2_CFLAGS) $(GL_CFLAGS)
    libftgl_la_LDFLAGS = $(FT2_LIBS) $(GL_LIBS)
    
    ftgldir = $(includedir)/FTGL
    ftgl_HEADERS = \
    	../include/FTBBox.h \
    	../include/FTBitmapGlyph.h \
    	../include/FTCharToGlyphIndexMap.h \
    	../include/FTCharmap.h \
    	../include/FTContour.h \
    	../include/FTExtrdGlyph.h \
    	../include/FTFace.h \
    	../include/FTFont.h \
    	../include/FTGL.h \
    	../include/FTGLBitmapFont.h \
    	../include/FTGLExtrdFont.h \
    	../include/FTGLOutlineFont.h \
    	../include/FTGLPixmapFont.h \
    	../include/FTGLPolygonFont.h \
    	../include/FTGLTextureFont.h \
    	../include/FTGlyph.h \
    	../include/FTGlyphContainer.h \
    	../include/FTLibrary.h \
    	../include/FTList.h \
    	../include/FTOutlineGlyph.h \
    	../include/FTPixmapGlyph.h \
    	../include/FTPoint.h \
    	../include/FTPolyGlyph.h \
    	../include/FTSize.h \
    	../include/FTTextureGlyph.h \
    	../include/FTVector.h \
    	../include/FTVectoriser.h