From be9ee170d6d46c3d41c30f3d822785abad091a52 Mon Sep 17 00:00:00 2001 From: Jeff Teunissen Date: Thu, 27 Sep 2001 21:47:47 +0000 Subject: [PATCH] Okay, the GL renderer lib is fixed up. --- libs/video/renderer/gl/Makefile.am | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/libs/video/renderer/gl/Makefile.am b/libs/video/renderer/gl/Makefile.am index 73fd552e3..7bb33967a 100644 --- a/libs/video/renderer/gl/Makefile.am +++ b/libs/video/renderer/gl/Makefile.am @@ -1,16 +1,14 @@ INCLUDES= -I$(top_srcdir)/include +CFLAGS += $(GLX_CFLAGS) + +noinst_LTLIBRARIES= libgl.la if BUILD_GL -GL = libgl.la -AM_CFLAGS = $(GLX_CFLAGS) -else -GL = -endif - -noinst_LTLIBRARIES = $(GL) - -libgl_la_LDFLAGS = -version-info 1:0:0 -libgl_la_SOURCES = gl_draw.c gl_dyn_fires.c \ - gl_dyn_lights.c gl_dyn_part.c gl_dyn_textures.c gl_graph.c gl_rmain.c \ - gl_rmisc.c gl_rsurf.c gl_screen.c gl_skin.c gl_sky.c gl_sky_clip.c \ +libgl_la_SOURCES= \ + gl_draw.c gl_dyn_fires.c gl_dyn_lights.c gl_dyn_part.c \ + gl_dyn_textures.c gl_graph.c gl_rmain.c gl_rmisc.c gl_rsurf.c \ + gl_screen.c gl_skin.c gl_sky.c gl_sky_clip.c \ gl_textures.c gl_warp.c gl_funcs.c noisetextures.c +else +libgl_la_SOURCES= +endif