Rebuild list of sources to be linked in the libftgl.a file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
diff --git a/unix/src/Makefile b/unix/src/Makefile
index b281b94..9b334d0 100644
--- a/unix/src/Makefile
+++ b/unix/src/Makefile
@@ -27,6 +27,7 @@ SRCS = \
FTPixmapGlyph.cpp \
FTPoint.cpp \
FTPolyGlyph.cpp \
+ FTSimpleLayout.cpp \
FTSize.cpp \
FTTextureGlyph.cpp \
FTVectoriser.cpp
@@ -49,12 +50,14 @@ HEADERS = \
FTGLTextureFont.h \
FTGlyph.h \
FTGlyphContainer.h \
+ FTLayout.h \
FTLibrary.h \
FTList.h \
FTOutlineGlyph.h \
FTPixmapGlyph.h \
FTPoint.h \
FTPolyGlyph.h \
+ FTSimpleLayout.h \
FTSize.h \
FTTextureGlyph.h \
FTVector.h \
@@ -67,8 +70,8 @@ OBJS = $(patsubst %.cpp,%.$(OBJEXT),$(SRCS))
ALL_OBJS = $(LOBJS) $(OBJS)
-CXXFLAGS += $(FT2_CFLAGS)
-LIBS += $(FT2_LIBS)
+CXXFLAGS += $(FT2_CFLAGS) $(GL_CFLAGS)
+LIBS += $(FT2_LIBS) $(GL_LIBS)
libftgl.la: $(LOBJS)