mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
this works a smidge better
This commit is contained in:
parent
b866bcae61
commit
081a44e5bc
1 changed files with 6 additions and 3 deletions
|
@ -2,14 +2,17 @@ INCLUDES= -I$(top_srcdir)/include $(GLX_CFLAGS)
|
|||
|
||||
noinst_LTLIBRARIES= libgl.la
|
||||
|
||||
EXTRA_libgl_la_SOURCES= \
|
||||
gl_src = \
|
||||
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
|
||||
|
||||
if BUILD_GL
|
||||
libgl_la_SOURCES= $(EXTRA_libgl_la_SOURCES)
|
||||
build_gl_src = $(gl_src)
|
||||
else
|
||||
libgl_la_SOURCES=
|
||||
build_gl_src =
|
||||
endif
|
||||
libgl_la_SOURCES= $(build_gl_src)
|
||||
|
||||
EXTRA_libgl_la_SOURCES = $(gl_src)
|
||||
|
|
Loading…
Reference in a new issue