mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
2ce0f2ded2
This gives us a bunch more flexibility. plugins no longer have the "lib" prefix or the version suffix, they're now installed in $fs_sharepath/QFplugins,, builds should take much less time (in general, only one of pic or non-pic versions are build), bins and libs can have individual CFLAGS
20 lines
479 B
Makefile
20 lines
479 B
Makefile
AUTOMAKE_OPTIONS= foreign
|
|
|
|
AM_CFLAGS= @PREFER_PIC@
|
|
INCLUDES= -I$(top_srcdir)/include $(GLX_CFLAGS)
|
|
|
|
if BUILD_GL
|
|
noinst_LTLIBRARIES= libgl.la
|
|
else
|
|
noinst_LTLIBRARIES=
|
|
endif
|
|
|
|
gl_src = \
|
|
gl_draw.c gl_dyn_lights.c gl_dyn_part.c gl_dyn_textures.c \
|
|
gl_graph.c gl_lightmap.c gl_mod_alias.c gl_mod_sprite.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 noisetextures.c
|
|
|
|
libgl_la_SOURCES= $(gl_src)
|
|
|
|
EXTRA_DIST = $(gl_src)
|