Commit 6192d3db4589120de31e3ce181c7789c567f282f

marcelo 2003-04-14T09:28:06

Rebuild list of sources to be linked in the libftgl.a file

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)